From 020a6215f192dade681745aaf640720d7d7f529c Mon Sep 17 00:00:00 2001 From: rzadp Date: Wed, 12 Jun 2024 13:45:55 +0200 Subject: [PATCH] weird paths in github action container --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdabb83..ae20f35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,14 +46,14 @@ jobs: - name: Run clippy run: | - SKIP_WASM_BUILD=1 cargo clippy --all-targets --locked --workspace --quiet - SKIP_WASM_BUILD=1 cargo clippy --all-targets --all-features --locked --workspace --quiet + SKIP_WASM_BUILD=1 /github/home/.cargo/bin/cargo clippy --all-targets --locked --workspace --quiet + SKIP_WASM_BUILD=1 /github/home/.cargo/bin/cargo clippy --all-targets --all-features --locked --workspace --quiet timeout-minutes: 30 - name: Run the tests - run: cargo test + run: /github/home/.cargo/bin/cargo test timeout-minutes: 15 - name: Build the docs - run: cargo doc --all-features --workspace --no-deps + run: /github/home/.cargo/bin/cargo doc --all-features --workspace --no-deps timeout-minutes: 15