Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
strategy:
matrix:
# "3.10" must be a string; otherwise it is interpreted as 3.1.
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"]
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false

steps:
Expand Down Expand Up @@ -53,11 +54,12 @@ jobs:


e2e:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
if: github.event_name != 'release'
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"]
os: [ubuntu-latest]
fail-fast: false

steps:
Expand All @@ -72,11 +74,12 @@ jobs:
make e2e

examples:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
if: github.event_name != 'release'
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"]
os: [ubuntu-latest]
fail-fast: false

steps:
Expand Down