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 294cea3 commit 2f90e06Copy full SHA for 2f90e06
.github/workflows/test.yml
@@ -25,7 +25,15 @@ jobs:
25
- name: Install stable toolchain
26
uses: actions-rust-lang/setup-rust-toolchain@v1
27
28
+ - name: Cache cargo-nextest binary
29
+ id: cache-cargo-nextest
30
+ uses: actions/cache@v4
31
+ with:
32
+ path: ~/.cargo/bin/cargo-nextest
33
+ key: ${{ runner.os }}-cargo-nextest-${{ hashFiles('**/Cargo.lock') }}
34
+
35
- name: Install cargo-nextest
36
+ if: steps.cache-cargo-nextest.outputs.cache-hit != 'true'
37
uses: taiki-e/install-action@v2
38
with:
39
tool: cargo-nextest
0 commit comments