Update to_prod #77
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check server files | |
| on: | |
| pull_request: | |
| paths: | |
| - 'to_sandbox.txt' | |
| - 'to_production.txt' | |
| - '.github/workflows/pushlists.yaml"' | |
| jobs: | |
| test_server_files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Install gftools | |
| run: pip install gftools | |
| - name: Lint server files | |
| run: | | |
| gftools push-status . --lint |