Skip to content

Test framework

Test framework #3

Workflow file for this run

---
name: Test Suite
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v6"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: "scripts/install"
- name: "Run tests"
run: "scripts/test"
# - name: "Run linting checks"
# run: "scripts/check"
# - name: "Build package & docs"
# run: "scripts/build"
# - name: "Run tests"
# run: "scripts/test"
# - name: "Enforce coverage"
# run: "scripts/coverage"