Skip to content

Commit

Permalink
GA 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
keithasaurus committed Mar 1, 2024
1 parent fda9dbe commit 7820bba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# exclude examples in CI because some 3.10 features are used
run: poetry run mypy . --exclude examples --exclude tests/test_310_plus.py --exclude tests/test_311_plus.py --exclude tests/test_39_plus.py
- name: mypy 3.11
if: matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
if: matrix.python-version == 3.11 || matrix.python-version == 3.12
run: poetry run mypy .
- name: mypy 3.10
if: matrix.python-version == 3.10
Expand All @@ -38,8 +38,8 @@ jobs:
- name: run 3.10 tests
if: matrix.python-version == 3.10
run: poetry run pytest --ignore tests/test_311_plus.py
- name: run 3.11/'3.12.0-rc.3' tests
if: matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
- name: run 3.11/3.12 tests
if: matrix.python-version == 3.11 || matrix.python-version == 3.12
run: poetry run pytest --ignore tests/test_311_plus.py
- name: run all examples
if: matrix.python-version == 3.10
Expand All @@ -48,12 +48,12 @@ jobs:
if: matrix.python-version == 3.9 || matrix.python-version == 3.8 || matrix.python-version == 'pypy3.9'
run: poetry run flake8 --exclude codegen,bench,examples,tests/test_310_plus.py,tests/test_311_plus.py --ignore E721,E741,W503,F405,F403,F401
- name: linting 3.10+
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == 3.12
run: poetry run flake8 --exclude codegen --ignore E721,E741,W503,F405,F403,F401,DAR101,DAR201,DAR401
- name: darglint
run: poetry run darglint koda_validate
- name: doctests
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == 3.12
run: cd docs && poetry run make doctest
- name: benchmarks
run: poetry run python -m bench.run

0 comments on commit 7820bba

Please sign in to comment.