We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f13d0 commit f630b31Copy full SHA for f630b31
1 file changed
.github/workflows/test.yml
@@ -153,22 +153,11 @@ jobs:
153
- uses: actions/checkout@v5
154
- uses: dtolnay/rust-toolchain@stable
155
with:
156
+ # required by cargo-rdme
157
components: rust-src
- # need to cache cargo-rdme to avoid redundant install
158
- - name: Cache Binaries
159
- id: cache-binaries
160
- uses: actions/cache@v4
+ - uses: taiki-e/install-action@v2
161
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