weird paths in github action container

This commit is contained in:
rzadp
2024-06-12 13:45:55 +02:00
parent dda6c90f10
commit 020a6215f1
+4 -4
View File
@@ -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