1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Task runner for rtb-forge. `just ci` mirrors the MR gate.
default: check
check:
cargo check --all-targets
build:
cargo build --all-targets
fmt:
cargo fmt --all
fmt-check:
cargo fmt --all --check
lint:
cargo clippy --all-targets -- -D warnings
test:
cargo nextest run || cargo test
# Testcontainers-backed Gitea integration tests — needs Docker.
# The Gitea containers are serialised via .config/nextest.toml.
test-integration:
cargo nextest run --features integration
audit:
cargo deny check
docs:
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps
site-build:
zensical build --clean
site-serve:
zensical serve
ci: fmt-check lint docs test audit