ci: source cargo env so runner can find rustup toolchain

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 eba34f74c6
commit dee50eaa4c

View file

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