Skip to content

Testing force push

Testing force push #3

Workflow file for this run

---
name: Test Suite
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- name: "Install dependencies"
run: "make install"
- name: "Run linting & type checking"
run: "make check"
- name: "Build package & docs"
run: "make build"
- name: "Run tests"
run: "make test"
- name: "Enforce coverage"
run: "make coverage"