fix(ci): run lint only on Python 3.12, not 3.13/3.14 #419
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: Unit Tests and Lint | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.12', '3.13', '3.14'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pytest "setuptools<81" | |
| pip install -r requirements.txt | |
| - name: Ensure Config | |
| run: cp config.json.sample config.json | |
| - name: Setup access modules code base | |
| run: python -m scripts.clone_access_modules | |
| - name: Ensure access modules dependencies | |
| run: | | |
| pip install -r Access/access_modules/requirements.txt --no-cache-dir --ignore-installed | |
| - name: Lint code base | |
| # pylama 8.4.1 and its linters (pydocstyle/typed_ast) predate Python 3.13+ | |
| # and can't parse their AST. Lint is version-independent, so run it once on | |
| # the oldest matrix version; tests still run on every version. | |
| if: matrix.python-version == '3.12' | |
| run: | | |
| pip install "setuptools<81" | |
| python -m pylama Access/accessrequest_helper.py scripts bootprocess | |
| - name: Test with pytest | |
| run: python -m pytest -v --cov --disable-warnings |