Skip to content

CI

CI #23

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev", "pypy-3.9", "pypy-3.10"]
pytest: ["81", "82", "latest"]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e py-pytest${{ matrix.pytest }}
qa:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e qa