Skip to content
This repository was archived by the owner on Oct 30, 2025. It is now read-only.

CI

CI #10

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 8 * * 6'
jobs:
typecheck:
name: Type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: cd backend && uv run mypy --strict .
fmt:
name: Format and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: cd backend && uv run ruff check