Skip to content

Commit

Permalink
ci: also test Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jan 8, 2025
1 parent 3506b7f commit 4df1d2c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest]
include:
- os: macos-latest
python-version: '3.12'
python-version: '3.13'
- os: windows-latest
python-version: '3.12'
python-version: '3.13'

steps:
- uses: actions/checkout@v4
Expand All @@ -38,13 +38,14 @@ jobs:

- run: pytest


coverage:
runs-on: ubuntu-latest
name: Python ${{ matrix.python-version }}
name: Coverage Python ${{ matrix.python-version }}

strategy:
matrix:
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_stdlib_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
os: ['ubuntu-latest']
include:
- os: macos-latest
python-version: '3.12'
python-version: '3.13'
- os: windows-latest
python-version: '3.12'
python-version: '3.13'

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4df1d2c

Please sign in to comment.