Skip to content

Commit 5f33372

Browse files
committed
ci: add python 3.13 and 3.14 to test matrix + bump actions
1 parent 1055097 commit 5f33372

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
py: [ '3.10', '3.11', '3.12' ]
14+
py: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
1515
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
1616
runs-on: ${{ matrix.os }}
1717
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-python@v5
18+
- uses: actions/checkout@v6
19+
- uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ matrix.py }}
2222
- name: "Install requirements"
@@ -29,8 +29,8 @@ jobs:
2929
check-typing:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
33-
- uses: actions/setup-python@v5
32+
- uses: actions/checkout@v6
33+
- uses: actions/setup-python@v6
3434
with:
3535
python-version: "3.9"
3636
- run: pip install mypy

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Build and Publish
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v5
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-python@v6
1515
with:
1616
python-version: 3.x
1717
- run: |

0 commit comments

Comments
 (0)