Skip to content

Commit e6b603c

Browse files
Merge pull request #74 from apdavison/ci-py-314
Add Python 3.14 to the matrix for running CI tests
2 parents 7e3e3ff + 3857768 commit e6b603c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.13"]
15+
python-version: ["3.9", "3.13", "3.14"]
1616
steps:
1717

1818
- name: Checkout Repository

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ on:
88
jobs:
99
build_and_test:
1010
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
python-version: ["3.9", "3.12", "3.14"]
1114
steps:
1215

1316
- name: Checkout Repository
1417
uses: actions/checkout@v4
1518

16-
- name: Set up Python 3.12
19+
- name: Set up Python ${{ matrix.python-version }}
1720
uses: actions/setup-python@v5
1821
with:
19-
python-version: 3.12
22+
python-version: ${{ matrix.python-version }}
2023

2124
- name: Run build
2225
run: |

0 commit comments

Comments
 (0)