Skip to content

MAINT: add license. #11

MAINT: add license.

MAINT: add license. #11

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Install UV
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --group test
- name: Run tests
run: uv run pytest tests