Skip to content

Commit e2bf45b

Browse files
committed
chore: test with python 3.13
1 parent f5f8e4b commit e2bf45b

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/pr_pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.11", "3.12"]
12+
python-version: ["3.11", "3.12", "3.13"]
1313
steps:
1414
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1515
with:

.github/workflows/test.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Test
23

34
on: [push]
@@ -7,17 +8,17 @@ jobs:
78
runs-on: ubuntu-latest
89
strategy:
910
matrix:
10-
python-version: ["3.11", "3.12"]
11+
python-version: ["3.11", "3.12", "3.13"]
1112
steps:
12-
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
13-
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
15-
with:
16-
python-version: ${{ matrix.python-version }}
17-
- name: Install test dependencies
18-
run: |
19-
python -m pip install --upgrade pip
20-
pip install --editable .
21-
- name: Run unit tests
22-
run: |
23-
python -m unittest discover -v -s src/
13+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install test dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install --editable .
22+
- name: Run unit tests
23+
run: |
24+
python -m unittest discover -v -s src/

0 commit comments

Comments
 (0)