Skip to content

prepare release

prepare release #83

Workflow file for this run

name: Test and Check
on:
push:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
test-and-check:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
env:
PRIMARY_PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run install
run: |
make install
- name: Run checkers
run: |
make check
- name: Run tests
run: |
make test