Skip to content

Commit

Permalink
Merge pull request #175 from cclauss/patch-1
Browse files Browse the repository at this point in the history
GitHub Actions: Test on Python 3.13 beta
  • Loading branch information
h2non authored May 12, 2024
2 parents 590dac5 + adf7b67 commit 5ddaef8
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,26 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: ["3.11"]
python-version: ["3.12", "3.13"]
include:
- os: macos-latest
python-version: '3.13'
- os: windows-latest
python-version: '3.13'

steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Upgrade PIP
run: python -m pip install --upgrade pip
Expand All @@ -56,4 +62,3 @@ jobs:
with:
name: coverage_${{ matrix.python-version }}
path: coverage

0 comments on commit 5ddaef8

Please sign in to comment.