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: Continuous Integration
permissions: read-all
on:
pull_request:
branches:
- main
concurrency:
# yamllint disable-line rule:line-length
group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}"
cancel-in-progress: true
jobs:
test:
timeout-minutes: 20
runs-on: ubuntu-24.04
strategy:
matrix:
include:
- python: "3.9"
tox: py39
- python: "3.10"
tox: py310
- python: "3.11"
tox: py311
- python: "3.12"
tox: py312
- python: "3.13"
tox: py313
- python: "3.14"
tox: py314,py314-trio
- python: "3.14"
tox: pep8
- python: "3.14"
tox: mypy
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Python 🔧
uses: actions/setup-python@v5.5.0
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: Build 🔧 & Test 🔍
run: |
pip install tox
tox -e ${{ matrix.tox }}
|