Skip to content

Commit 9e795d3

Browse files
committed
update workflows
1 parent 412807a commit 9e795d3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- os: macos-latest
1717
python-version: '3.8'
1818
- os: macos-latest
19-
python-version: '3.12'
19+
python-version: '3.13'
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run integration tests
3131
run: invoke integration
3232

33-
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
33+
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
3434
name: Upload integration codecov report
3535
uses: codecov/codecov-action@v4
3636
with:

.github/workflows/minimum.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- os: macos-latest
1717
python-version: '3.8'
1818
- os: macos-latest
19-
python-version: '3.12'
19+
python-version: '3.13'
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- os: macos-latest
1717
python-version: '3.8'
1818
- os: macos-latest
19-
python-version: '3.12'
19+
python-version: '3.13'
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run Unit tests
3333
run: invoke unit
3434

35-
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
35+
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
3636
name: Upload unit codecov report
3737
uses: codecov/codecov-action@v4
3838
with:

0 commit comments

Comments
 (0)