Skip to content

Slice 1 (3/4): task service REST API + liveness protocol + artifacts #74

Slice 1 (3/4): task service REST API + liveness protocol + artifacts

Slice 1 (3/4): task service REST API + liveness protocol + artifacts #74

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
enable-cache: true
- name: Sync dependencies
run: uv sync
- name: Type-check (mypy)
run: uv run mypy -p panopticon
- name: Test (pytest)
run: uv run pytest