Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
include:
- python-version: "3.12"
tox-env: py312
- python-version: "3.13"
tox-env: py313
- python-version: "3.14"
tox-env: py314
steps:
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -36,4 +42,4 @@ jobs:
- name: Isort check
run: poetry run isort . --profile black --check --diff
- name: Tox check (pytest)
run: poetry run tox
run: poetry run tox -e ${{ matrix.tox-env }}
Loading