From dee50eaa4c0d191db554415868db6ffe031720b7 Mon Sep 17 00:00:00 2001 From: Zachery Aaron Shores-Chmielewski Date: Mon, 16 Feb 2026 13:41:49 +0700 Subject: [PATCH] ci: source cargo env so runner can find rustup toolchain Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski --- .ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci.yml b/.ci.yml index d8458e2..996a6d9 100644 --- a/.ci.yml +++ b/.ci.yml @@ -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