Skip to content

Add CI testing

Add CI testing #1

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: # Allows manual triggering from the Actions tab
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.12', '3.13', '3.14']
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}
- name: Run tests
run: |
make devinstall
make test