We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42cca2d commit d864d9cCopy full SHA for d864d9c
.github/workflows/test.yml
@@ -21,11 +21,11 @@ jobs:
21
fail-fast: false
22
matrix:
23
python-version:
24
- - "3.8"
25
- - "3.9"
26
- - "3.10"
27
- - "3.11"
28
- "3.12"
+ - "3.11"
+ - "3.10"
+ - "3.9"
+ - "3.8"
29
30
steps:
31
- name: Checkout code
@@ -59,6 +59,7 @@ jobs:
59
uses: actions/setup-python@v5
60
with:
61
python-version: ${{ matrix.python-version }}
62
+ allow-prereleases: true
63
64
- name: Upgrade pip
65
run: |
@@ -70,6 +71,7 @@ jobs:
70
71
poetry --version
72
- name: Install dependencies
73
74
+ poetry env use python${{ matrix.python-version }}
75
poetry install
76
- name: Run pytest
77
0 commit comments