Skip to content

Feature new test / slight refactor / new CLI #3

Feature new test / slight refactor / new CLI

Feature new test / slight refactor / new CLI #3

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@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
run: uv python install
- name: Install dependencies with uv
run: uv sync --all-extras --dev
- name: Run tests with uv
run: uv run pytest