We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d62a2 commit 3d6bd4aCopy full SHA for 3d6bd4a
.github/workflows/rust.yml
@@ -92,6 +92,7 @@ jobs:
92
~/.cargo/registry
93
target
94
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}}"
95
+ if: matrix.rust.name != 'MSRV'
96
# ... and on msrv runs, use another
97
- uses: actions/cache@v4
98
with:
@@ -100,6 +101,7 @@ jobs:
100
101
102
103
key: "${{runner.os}} Rust ${{steps.msrv-toolchain.outputs.cachekey}}"
104
+ if: matrix.rust.name == 'MSRV'
105
# finally we can run tests
106
- run: cargo test --lib --locked
107
- run: cargo test --doc --locked
0 commit comments