Skip to content

Prepare release 3.0 #19

Prepare release 3.0

Prepare release 3.0 #19

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: python -m pip install tox
- run: tox -e docs
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1
tests-unix:
name: tests / ${{ matrix.python }} / Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.10"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pipx run tox -e py
tests-windows:
name: tests / ${{ matrix.python }} / Windows
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.8"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pipx run tox -e py