We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf70cac commit b0dac54Copy full SHA for b0dac54
1 file changed
.github/workflows/tests.yml
@@ -31,7 +31,9 @@ jobs:
31
shared-key: ${{ runner.os }}
32
33
- name: Install nextest
34
- run: cargo install cargo-nextest --locked
+ uses: taiki-e/install-action@nextest
35
+ with:
36
+ tool: nextest
37
38
- name: Run all tests
39
run: cargo nextest run --profile ci
@@ -80,11 +82,15 @@ jobs:
80
82
with:
81
83
84
- - name: Setup Rust environment and install nextest
85
+ - name: Setup Rust environment
86
run: |
87
source ~/.cargo/env
88
rustup default stable
- cargo install cargo-nextest || true
89
+
90
+ - name: Install nextest
91
92
93
94
95
- name: Fix target directory permissions from previous runs
96
0 commit comments