We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93d75a9 commit 09e1328Copy full SHA for 09e1328
.github/workflows/build-and-test.yml
@@ -24,9 +24,11 @@ jobs:
24
- uses: dtolnay/rust-toolchain@stable
25
- uses: Swatinem/rust-cache@v2
26
with:
27
+ prefix-key: "v1-rust"
28
shared-key: "${{ inputs.os }}"
29
cache-on-failure: true
- - name: Build workspace (including test binaries)
30
+ - name: Build workspace
31
+ # Use cargo test --no-run here to build all test binaries.
32
run: cargo test --workspace --all-features --no-run ${{ inputs.exclude-crates && format('--exclude {0}', inputs.exclude-crates) || '' }}
33
34
test:
@@ -46,6 +48,7 @@ jobs:
46
48
47
49
50
51
52
53
save-if: false
54
- uses: actions/setup-python@v5
0 commit comments