We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f13d0 commit a3e3a2fCopy full SHA for a3e3a2f
1 file changed
.github/workflows/test.yml
@@ -152,23 +152,9 @@ jobs:
152
steps:
153
- uses: actions/checkout@v5
154
- uses: dtolnay/rust-toolchain@stable
155
+ - uses: taiki-e/install-action@v2
156
with:
- components: rust-src
157
- # need to cache cargo-rdme to avoid redundant install
158
- - name: Cache Binaries
159
- id: cache-binaries
160
- uses: actions/cache@v4
161
- with:
162
- path:
163
- ~/.cargo/bin/cargo-rdme
164
- key: ${{ runner.os }}-binary-cargo-rdme
165
- - name: Install cargo-rdme
166
- shell: bash
167
- # NOTE: This doesn't worry about installing updates
168
- run: |
169
- if test ! -f "$HOME/.cargo/bin/cargo-rdme"; then
170
- cargo install cargo-rdme
171
- fi
+ tool: cargo-rdme
172
- name: Run cargo-rdme
173
run: |
174
cargo rdme --check
0 commit comments