Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
pull_request:

jobs:
lint-and-format-check:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -33,5 +34,23 @@ jobs:
- name: Run ty check
run: uv run ty check src tests

test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
with:
enable-cache: true

- name: Set up Python
run: uv python install

- name: Install the project
run: uv sync --locked --all-extras --dev

- name: Run tests
run: uv run pytest