[llmd] Keep working #309
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 the Python syntax | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check_python_syntax: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| python-version: [3.9] | |
| steps: | |
| - name: Use checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check that all the files can be compiled | |
| run: | | |
| set -o pipefail | |
| set -o errexit | |
| python -m compileall . | (grep -v -E '(^Listing|^Compiling)' || true) |