Skip to content

Implement PEP 714, drop Python 3.7, and add Python 3.12 #106

Implement PEP 714, drop Python 3.7, and add Python 3.12

Implement PEP 714, drop Python 3.7, and add Python 3.12 #106

Workflow file for this run

name: CI
on: [pull_request, workflow_dispatch]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint code
run: |
pipx run nox -s check_code
- name: Check format
run: |
pipx run nox -s check_format
- name: Type check
run: |
pipx run nox -s check_types
- name: Build docs
run: |
pipx run nox -s docs
- name: Build wheel
run: |
pipx run nox -s build
tests:
name: Test Python ${{ matrix.python_version }}
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Test
run: |
pipx run nox -s coverage --python ${{ matrix.python_version }}