Skip to content

Commit

Permalink
ci: use cargo-quickinstall to install crates
Browse files Browse the repository at this point in the history
This cuts down roughly 5m30s from our 8m main CI
stage.
  • Loading branch information
dspicher committed Aug 4, 2023
1 parent be8876a commit 88b3b3f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install crates
run: cargo install --debug cargo-sort cargo-rdme cargo-audit cargo-udeps
run: |
cargo install --debug cargo-quickinstall
cargo quickinstall cargo-sort cargo-rdme cargo-audit cargo-udeps
- name: Lint
run: |
cargo fmt -- --check --config format_code_in_doc_comments=true
Expand Down

0 comments on commit 88b3b3f

Please sign in to comment.