chore(deps-dev): bump ruff from 0.13.3 to 0.14.8 in the dev-deps group across 1 directory #330
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: [main] | |
| tags: ["*"] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-22.04 | |
| env: | |
| working-directory: ./ | |
| poetry-version: "1.8.2" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12", "3.13", "3.14"] | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ${{ env.working-directory }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Poetry | |
| uses: bakdata/ci-templates/actions/[email protected] | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| poetry-version: ${{ env.poetry-version }} | |
| working-directory: ${{ env.working-directory }} | |
| - name: Install dependencies | |
| run: poetry install --no-interaction | |
| - name: Check Poetry config and lockfile | |
| run: poetry run pre-commit run poetry-check --all-files | |
| - name: Lint (ruff) | |
| run: | | |
| if [[ "$RUNNER_OS" == "Linux" && "${{ matrix.python-version }}" == "3.10" ]] | |
| then | |
| poetry run ruff check . --config pyproject.toml --output-format github --no-fix | |
| else | |
| poetry run pre-commit run ruff-lint --all-files --show-diff-on-failure | |
| fi; | |
| - name: Formatting (ruff) | |
| run: poetry run pre-commit run ruff-format --all-files --show-diff-on-failure | |
| - name: Typing (pyright) | |
| run: poetry run pre-commit run pyright --all-files | |
| - name: Test | |
| run: poetry run pytest tests |