Skip to content

Commit 48cfe89

Browse files
committed
ci: Test on Python 3.10 - 3.14
The matrix was broken and tests ran only on 3.10...
1 parent 9855e0c commit 48cfe89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ jobs:
4141
runs-on: ${{ matrix.os }}
4242
strategy:
4343
matrix:
44-
python-version: ['3.10', '3.11']
44+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
4545
os: [ubuntu-latest]
4646
defaults:
4747
run:
4848
shell: bash
4949
steps:
5050
- uses: actions/checkout@v3
51-
- name: Set up Python 3.10
51+
- name: Set up Python ${{ matrix.python-version }}
5252
uses: actions/setup-python@v4
5353
with:
54-
python-version: '3.10'
54+
python-version: ${{ matrix.python-version }}
5555
- name: Install Poetry
5656
uses: snok/install-poetry@v1
5757
with:

0 commit comments

Comments
 (0)