Skip to content

Commit 5ddaef8

Browse files
authored
Merge pull request #175 from cclauss/patch-1
GitHub Actions: Test on Python 3.13 beta
2 parents 590dac5 + adf7b67 commit 5ddaef8

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,26 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ ubuntu-latest ]
23-
python-version: ["3.11"]
23+
python-version: ["3.12", "3.13"]
24+
include:
25+
- os: macos-latest
26+
python-version: '3.13'
27+
- os: windows-latest
28+
python-version: '3.13'
2429

2530
steps:
2631

2732
- name: Checkout
28-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
2934
with:
3035
fetch-depth: 0
3136
ref: ${{ github.event.pull_request.head.sha }}
3237

3338
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v5
3540
with:
3641
python-version: ${{ matrix.python-version }}
42+
allow-prereleases: true
3743

3844
- name: Upgrade PIP
3945
run: python -m pip install --upgrade pip
@@ -56,4 +62,3 @@ jobs:
5662
with:
5763
name: coverage_${{ matrix.python-version }}
5864
path: coverage
59-

0 commit comments

Comments
 (0)