Refactoring 2025 #73
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: CI | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| deprecated-tests-py27: | |
| name: Tests on 2.7.18 | |
| runs-on: ubuntu-20.04 | |
| container: | |
| image: python:2.7.18-buster | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel poetry | |
| poetry config experimental.new-installer false ||: | |
| poetry install | |
| - name: Do lint | |
| run: | | |
| poetry run flake8 --max-line-length 120 --ignore=E721 . | |
| - name: Do tests | |
| run: | | |
| poetry run pytest --cov uchecker -v | |
| tests: | |
| name: Tests on ${{ matrix.python-version }} | |
| runs-on: ubuntu-20.04 | |
| strategy: | |
| matrix: | |
| python-version: ["3.5.10", "3.6.15", "3.7.16", "3.8.16", "3.9.16", "3.10.11", "3.11.6"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip setuptools wheel poetry | |
| poetry config experimental.new-installer false ||: | |
| poetry install | |
| - name: Do lint | |
| run: | | |
| poetry run flake8 --max-line-length 120 --ignore=E721 . | |
| - name: Do tests | |
| run: | | |
| poetry run pytest --cov uchecker -v | |