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:
parent
eba34f74c6
commit
dee50eaa4c
1 changed files with 3 additions and 3 deletions
6
.ci.yml
6
.ci.yml
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue