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 55058ef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .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,9 @@ jobs:
- run: pip install .[full,tests,lint]

- run: flake8

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

- run: pytest

Expand All @@ -45,7 +47,7 @@ jobs:

strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 55058ef

Please sign in to comment.