We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03a320 commit 949ff7eCopy full SHA for 949ff7e
1 file changed
.github/workflows/test.yml
@@ -163,9 +163,12 @@ jobs:
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: |
- cargo install cargo-rdme
169
+ if not test -f "~/.cargo/bin/cargo-rdme"; then
170
+ cargo install cargo-rdme
171
+ fi
172
- name: Run cargo-rdme
173
174
cargo rdme --check
0 commit comments