Speed up CI by caching rustup toolchain and using cargo-binstall #2

Merged
schaefera merged 2 commits from fix/ci-cache-speedup into master 2026-07-29 14:29:01 +00:00
Showing only changes of commit ff91960b7b - Show all commits

View file

@ -38,7 +38,7 @@ jobs:
- name: Install cargo-make and cargo-audit
run: |
for crate in cargo-make cargo-audit; do
command -v "$crate" >/dev/null 2>&1 || cargo binstall -y "$crate"
command -v "$crate" >/dev/null 2>&1 || cargo binstall -y --targets x86_64-unknown-linux-musl "$crate"
done
- name: Run CI checks