Skip to content

Commit b81aa26

Browse files
fix: fix test flow for github actions
1 parent d9b2d43 commit b81aa26

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Set up Python
1111
uses: actions/setup-python@v2.2.1
1212
with:
13-
python-version: 3.8
13+
python-version: 3.13
1414
- name: Install dependencies
1515
run: make install-test
1616
- name: Lint
@@ -20,17 +20,17 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [3.7, 3.8]
23+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2424
steps:
25-
- uses: actions/checkout@v2
26-
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2.2.1
28-
with:
29-
python-version: ${{ matrix.python-version }}
30-
- name: Install dependencies
31-
run: make install-test
32-
- name: Run tests
33-
run: pytest
25+
- uses: actions/checkout@v2
26+
- name: Set up Python ${{ matrix.python-version }}
27+
uses: actions/setup-python@v2.2.1
28+
with:
29+
python-version: ${{ matrix.python-version }}
30+
- name: Install dependencies
31+
run: make install-test
32+
- name: Run tests
33+
run: pytest
3434

3535
coverage:
3636
runs-on: ubuntu-latest
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Python
4040
uses: actions/setup-python@v2.2.1
4141
with:
42-
python-version: 3.8
42+
python-version: 3.13
4343
- name: Install dependencies
4444
run: make install-test
4545
- name: Generate coverage report

0 commit comments

Comments
 (0)