Skip to content

Commit ff09228

Browse files
committed
chore: use latest ubuntu tu run tests, and python 3.13 to collect coverage
1 parent 093e445 commit ff09228

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/coverage-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
1616
with:
17-
python-version: "3.12"
17+
python-version: "3.13"
1818
- name: "Install dependencies"
1919
run: |
2020
python -m pip install --upgrade pip

.github/workflows/functional_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
max-parallel: 1
1919
matrix:
20-
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10" ]
20+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9", "pypy3.10" ]
2121

2222
steps:
2323
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
jobs:
1010
tests:
1111
name: "Python ${{ matrix.python-version }}"
12-
runs-on: "ubuntu-20.04"
12+
runs-on: "ubuntu-latest"
1313

1414
strategy:
1515
matrix:
16-
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10" ]
16+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9", "pypy3.10" ]
1717

1818
steps:
1919
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)