mirror of
https://github.com/google/fonts.git
synced 2024-12-15 19:52:21 +03:00
24 lines
516 B
YAML
24 lines
516 B
YAML
# Check to_sandbox.txt and to_production.txt do not contain typos
|
|
name: Google Fonts Test Server Files
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test_server_files:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.8"
|
|
- name: Install dependencies
|
|
run: pip install gftools[qa]
|
|
- name: Check server files
|
|
run: gftools push-status . --lint
|
|
|