Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
keithasaurus committed Dec 23, 2023
1 parent 84e89d5 commit adfa0e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12.0-rc.3']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
poetry-version: [1.6]
os: [ubuntu-22.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -27,13 +27,13 @@ jobs:
if: matrix.python-version == 3.8 || matrix.python-version == 3.9
run: poetry run pytest --ignore tests/test_310.py
- name: run 3.10+ tests
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 pytest
- name: linting 3.9-
if: matrix.python-version == 3.8 || matrix.python-version == 3.9
run: poetry run flake8 --exclude tests/test_310.py
- 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
- name: benchmarks
run: poetry run python -m bench.run

0 comments on commit adfa0e3

Please sign in to comment.