Skip to content

Commit

Permalink
Merge pull request #82 from cclauss/patch-1
Browse files Browse the repository at this point in the history
GitHub Actions: Add Python 3.13 pre-release to the testing
  • Loading branch information
Salamek authored Jun 25, 2024
2 parents a3257ca + eb78da7 commit bf85aae
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,21 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-alpha - 3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mock ruff
pip install mock setuptools ruff
- name: Test
run: python setup.py test

0 comments on commit bf85aae

Please sign in to comment.