Skip to content

Commit adbb865

Browse files
committed
Add support for Python 3.12 and 3.13
1 parent 8211b50 commit adbb865

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: Run Tests
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
build:
77

88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-22.04]
12-
python-version: ["3.8", "3.9", "3.10", "3.11"]
11+
os: [ubuntu-24.04]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
poetry config virtualenvs.create true --local
2727
poetry config virtualenvs.in-project true --local
28-
- uses: actions/cache@v3
28+
- uses: actions/cache@v4
2929
name: Define a cache for the virtual environment based on the dependencies lock file
3030
with:
3131
path: ./.venv

0 commit comments

Comments
 (0)