2026-02-15 18:26:20 +00:00
|
|
|
pipelines:
|
2026-02-16 06:19:02 +00:00
|
|
|
ci:
|
2026-02-15 18:26:20 +00:00
|
|
|
triggers:
|
|
|
|
|
- event: push
|
|
|
|
|
branches: ["*"]
|
|
|
|
|
jobs:
|
2026-02-16 06:19:02 +00:00
|
|
|
check:
|
2026-02-16 06:41:49 +00:00
|
|
|
run: . ~/.cargo/env && cargo check --workspace
|
2026-02-16 06:19:02 +00:00
|
|
|
timeout: 600
|
|
|
|
|
clippy:
|
2026-02-16 06:41:49 +00:00
|
|
|
run: . ~/.cargo/env && cargo clippy --workspace --all-targets -- -D warnings
|
2026-02-16 06:19:02 +00:00
|
|
|
timeout: 600
|
|
|
|
|
test:
|
|
|
|
|
needs: [check]
|
2026-02-16 06:41:49 +00:00
|
|
|
run: . ~/.cargo/env && cargo xtask test essential
|
2026-02-16 06:19:02 +00:00
|
|
|
timeout: 900
|