1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
name: rc-testing
on:
workflow_dispatch:
# Cancel duplicate builds
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
# Basic tests but with RC
- name: Test with Python 3.11 on Linux
os: ubuntu-latest
python: '3.11'
toxenv: py311-test-predeps
toxposargs: -sv
- name: Test with Python 3.12 on OSX
os: macos-latest
python: '3.12'
toxenv: py312-test-predeps
toxposargs: -sv
- name: Test with Python 3.13 on Windows
os: windows-latest
python: '3.13'
toxenv: py313-test-predeps
toxposargs: -sv
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip tox
- name: Run tests
run: tox -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
|