Skip to content

Commit fabc4a3

Browse files
committed
fix github actions
1 parent 271a378 commit fabc4a3

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ jobs:
88
fail-fast: false
99
matrix:
1010
python:
11-
- py38
12-
- py310
13-
- py311
11+
- env: py38
12+
version: '3.8'
13+
- env: py310
14+
version: '3.10'
15+
- env: py311
16+
version: '3.11'
1417
httplib:
1518
- default
1619
- fido
1720
steps:
1821
- uses: actions/checkout@v2
19-
- uses: actions/setup-python@v2
22+
- uses: actions/setup-python@v4
2023
with:
21-
python-version: 3.10
24+
python-version: ${{ matrix.python.version }}
2225
- run: pip install tox
23-
- run: tox -e ${{ matrix.python }}-${{ matrix.httplib }}
26+
- run: tox -e ${{ matrix.python.env }}-${{ matrix.httplib }}
2427

2528
misc:
2629
runs-on: ubuntu-22.04
@@ -34,6 +37,6 @@ jobs:
3437
- uses: actions/checkout@v2
3538
- uses: actions/setup-python@v2
3639
with:
37-
python-version: 3.10
40+
python-version: '3.8'
3841
- run: pip install tox
3942
- run: tox -e ${{ matrix.tox }}

0 commit comments

Comments
 (0)