1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: CI
on:
push:
branches: [main]
pull_request:
permissions: {}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- run: rustup component add clippy rustfmt llvm-tools
- run: cargo install grcov just
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
- run: cargo fmt --all --check
- run: just clippy coverage
# Mutation testing runs locally via `just mutants` — too slow for CI.