Skip to content

Commit

Permalink
GitHub Actions: Test on Python 3.13 beta (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored May 18, 2024
1 parent 351fdfd commit dbd8ff4
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,24 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-latest
python-version: '3.13'
- os: windows-latest
python-version: '3.13'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

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

- name: Install dependencies
run: |
Expand All @@ -48,6 +54,7 @@ jobs:
coveralls || true
- name: Check distribution log description
shell: bash
run: |
python setup.py sdist bdist_wheel
twine check dist/*
Expand Down

0 comments on commit dbd8ff4

Please sign in to comment.