Skip to content

Merge pull request #6 from ronibhakta1/feature/#5/RFC-9457 #11

Merge pull request #6 from ronibhakta1/feature/#5/RFC-9457

Merge pull request #6 from ronibhakta1/feature/#5/RFC-9457 #11

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --dev
- name: Lint
run: uv run ruff check app/ tests/
- name: Format check
run: uv run ruff format --check app/ tests/
- name: Type check
run: uv run mypy app/
- name: Test
run: uv run pytest -m 'not integration and not slow' -v