Skip to content

Merge pull request #9 from norlandrhagen/addl_spec_testing #37

Merge pull request #9 from norlandrhagen/addl_spec_testing

Merge pull request #9 from norlandrhagen/addl_spec_testing #37

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install the project
run: uv sync --all-groups
- name: Run tests
run: uv run pytest tests -n auto