Skip to content

Test on Python 3.14 release candidate 3 #456

Test on Python 3.14 release candidate 3

Test on Python 3.14 release candidate 3 #456

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ macos-latest ]
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
include:
- os: macos-26
python-version: 3.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Set up Python v${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install tox-gh-actions
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Tests with Tox
run: tox