Skip to content

Commit 17c443a

Browse files
authored
Merge pull request sherlock-project#2812 from cclauss/patch-5
Test on Python 3.14 and free-threaded Python 3.14t
2 parents 9d6c47f + 10bed20 commit 17c443a

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/regression.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ on:
2727
jobs:
2828
tox-lint:
2929
runs-on: ubuntu-latest
30-
# Linting is ran through tox to ensure that the same linter
30+
# Linting is run through tox to ensure that the same linter
3131
# is used by local runners
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- name: Set up linting environment
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: '3.x'
3838
- name: Install tox and related dependencies
@@ -44,7 +44,7 @@ jobs:
4444
tox-matrix:
4545
runs-on: ${{ matrix.os }}
4646
strategy:
47-
# We want to know what specicic versions it fails on
47+
# We want to know what specific versions it fails on
4848
fail-fast: false
4949
matrix:
5050
os: [
@@ -57,11 +57,13 @@ jobs:
5757
'3.11',
5858
'3.12',
5959
'3.13',
60+
'3.14',
61+
'3.14t',
6062
]
6163
steps:
62-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v6
6365
- name: Set up environment ${{ matrix.python-version }}
64-
uses: actions/setup-python@v5
66+
uses: actions/setup-python@v6
6567
with:
6668
python-version: ${{ matrix.python-version }}
6769
- name: Install tox and related dependencies
@@ -75,7 +77,7 @@ jobs:
7577
runs-on: ubuntu-latest
7678
steps:
7779
- name: Checkout code
78-
uses: actions/checkout@v4
80+
uses: actions/checkout@v6
7981
- name: Set up Docker Buildx
8082
uses: docker/setup-buildx-action@v3
8183
- name: Get version from pyproject.toml

0 commit comments

Comments
 (0)