chore(deps): lock file maintenance #737
Workflow file for this run
This file contains 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 Python | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11", "3.12-dev"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/python-poetry-env | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Run ruff" | |
run: | | |
poetry run pre-commit run --all-files ruff | |
- name: "Run mypy" | |
run: | | |
poetry run pre-commit run --all-files mypy | |
- name: Test with pytest | |
run: | | |
poetry run pytest tests/ |