Skip to content

Commit

Permalink
ci: mypy >= 3.9 for full test
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Nov 24, 2023
1 parent a90b7b2 commit 9732c47
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest]
include:
- os: macos-latest
Expand All @@ -35,7 +35,12 @@ jobs:
- run: pip install .[full,tests,lint]

- run: flake8

- run: mypy
if: ${{ matrix.python-version }} >= "3.9"

- run: mypy old
if: ${{ matrix.python-version }} < "3.9"

- run: pytest

Expand Down

0 comments on commit 9732c47

Please sign in to comment.