swactor/.ci.yml
Zachery Aaron Shores-Chmielewski dee50eaa4c ci: source cargo env so runner can find rustup toolchain
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
2026-02-16 22:47:31 +07:00

16 lines
408 B
YAML

pipelines:
ci:
triggers:
- event: push
branches: ["*"]
jobs:
check:
run: . ~/.cargo/env && cargo check --workspace
timeout: 600
clippy:
run: . ~/.cargo/env && cargo clippy --workspace --all-targets -- -D warnings
timeout: 600
test:
needs: [check]
run: . ~/.cargo/env && cargo xtask test essential
timeout: 900