ci: source cargo env so runner can find rustup toolchain
Some checks failed
ci/check Job 'check' completed
ci/clippy Job 'clippy' completed
ci/ci Pipeline 'ci' failure

Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
This commit is contained in:
Zachery Aaron Shores-Chmielewski 2026-02-16 13:41:49 +07:00
parent e862a175d9
commit ca3454a91b

View file

@ -5,12 +5,12 @@ pipelines:
branches: ["*"]
jobs:
check:
run: cargo check --workspace
run: . ~/.cargo/env && cargo check --workspace
timeout: 600
clippy:
run: cargo clippy --workspace --all-targets -- -D warnings
run: . ~/.cargo/env && cargo clippy --workspace --all-targets -- -D warnings
timeout: 600
test:
needs: [check]
run: cargo xtask test essential
run: . ~/.cargo/env && cargo xtask test essential
timeout: 900