Skip to content

Commit

Permalink
Update versions used in CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
pszpetkowski committed Nov 10, 2023
1 parent 4046810 commit 5dc7583
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8.17", "3.9.17", "3.10.12"]
python-version: ["3.8.18", "3.9.18", "3.10.13"]
steps:
- uses: actions/checkout@v3
- name: Setup python ${{ matrix.python-version }}
Expand All @@ -25,18 +25,13 @@ jobs:

test-linux:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
python-version: ["3.11.4"]
experimental: [false]
include:
- python-version: "3.12.0-rc.1"
experimental: true
python-version: ["3.11.6", "3.12.0"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==1.5.1
run: pipx install poetry==1.7.0
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -48,7 +43,7 @@ jobs:
run: poetry install
- name: Run pre-commit linters and checks
run: poetry run pre-commit run --all-files
if: ${{ matrix.python-version == '3.11.4' }}
if: ${{ matrix.python-version == '3.11.5' }}
- name: Check typing with mypy
run: poetry run mypy --strict
- name: Run tests
Expand Down

0 comments on commit 5dc7583

Please sign in to comment.