Bump filelock from 3.18.0 to 3.20.1 #127
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 Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| ci_checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 3 | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12", "3.11", "3.10"] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| run: | | |
| curl -sSL https://install.python-poetry.org | python3 - | |
| - name: Install dependencies | |
| run: | | |
| poetry lock | |
| poetry install --no-interaction --no-ansi | |
| - name: Run Pre-commit | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install pre-commit | |
| pre-commit run --all-files | |
| - name: Run tests | |
| run: | | |
| poetry run pytest | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |