Skip to content

Commit 148b732

Browse files
authored
Merge pull request #40 from miaowware/actions-update
.github/workflows/tests: update for newer python
2 parents 3a04369 + 0827175 commit 148b732

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push,pull_request]
44

55
jobs:
66
precheck:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88

99
outputs:
1010
should_skip: ${{ steps.skip_check.outputs.should_skip }}
@@ -20,11 +20,11 @@ jobs:
2020
flake8:
2121
needs: precheck
2222
if: ${{ needs.precheck.outputs.should_skip != 'true' }}
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-latest
2424

2525
strategy:
2626
matrix:
27-
python-version: ['3.9', '3.10', '3.11']
27+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2828

2929
steps:
3030
- uses: actions/checkout@v2
@@ -47,11 +47,11 @@ jobs:
4747
mypy:
4848
needs: precheck
4949
if: ${{ needs.precheck.outputs.should_skip != 'true' }}
50-
runs-on: ubuntu-20.04
50+
runs-on: ubuntu-latest
5151

5252
strategy:
5353
matrix:
54-
python-version: ['3.9', '3.10', '3.11']
54+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
5555

5656
steps:
5757
- uses: actions/checkout@v2
@@ -71,11 +71,11 @@ jobs:
7171
pytest:
7272
needs: precheck
7373
if: ${{ needs.precheck.outputs.should_skip != 'true' }}
74-
runs-on: ubuntu-20.04
74+
runs-on: ubuntu-latest
7575

7676
strategy:
7777
matrix:
78-
python-version: ['3.9', '3.10', '3.11']
78+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
7979

8080
steps:
8181
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)