← Back

ci

failure
merge Β· main Β· 92782a3399cb Β· by zach Β· 2m 46s
failurecheck
success install rust [ -x "$HOME/.cargo/bin/cargo" ] || command -v cargo >/dev/null 2>&1 || curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain none
Fetching source at 92782a3399cb
Restoring build cache
cache restored (2333593922 bytes)
$ [ -x "$HOME/.cargo/bin/cargo" ] || command -v cargo >/dev/null 2>&1 || curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain none
failure fmt . "$HOME/.cargo/env" && cargo fmt --all -- --check
$ . "$HOME/.cargo/env" && cargo fmt --all -- --check
Diff in /workspace/cli/src/commands/skill/mod.rs:68:
         let home = dirs::home_dir().ok_or_else(|| {
             OakError::InvalidArgument("could not determine your home directory".to_string())
         })?;
-        (home.join(".claude").join("skills"), "all projects (user-wide)".to_string())
+        (
+            home.join(".claude").join("skills"),
+            "all projects (user-wide)".to_string(),
+        )
     } else {
         let ctx = crate::resolve::resolve(cwd).map_err(|e| match e {
             OakError::RepoNotFound => OakError::InvalidArgument(
skipped clippy . "$HOME/.cargo/env" && cargo clippy --workspace --all-targets -- -D warnings
skipped install nextest . "$HOME/.cargo/env" && command -v cargo-nextest >/dev/null 2>&1 || (. "$HOME/.cargo/env" && curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C "$HOME/.cargo/bin")
skipped test . "$HOME/.cargo/env" && cargo nextest run --workspace
skipped doctests . "$HOME/.cargo/env" && cargo test --workspace --doc