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