This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿง‘โ€๐Ÿ’ป Add Rust build artifact caching to CI workflows (#27)

Co-authored-by: gwennlbh <39094199+gwennlbh@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>

author
Copilot
co-author
gwennlbh
co-author
copilot-swe-agent[bot]
committer
GitHub
date (Oct 22, 2025, 5:10 PM +0200) commit 480c5336 parent 182692fc
+5
+3
.github/workflows/check.yml
··· 10 10 run: sudo apt-get update && sudo apt-get install -y ffmpeg 11 11 - uses: actions-rs/toolchain@v1 12 12 with: { toolchain: stable } 13 + - uses: Swatinem/rust-cache@v2 13 14 - uses: extractions/setup-just@v1 14 15 - uses: carlosperate/download-file-action@v2 15 16 with: ··· 59 60 run: sudo apt-get update && sudo apt-get install -y ffmpeg 60 61 - uses: actions-rs/toolchain@v1 61 62 with: { toolchain: stable } 63 + - uses: Swatinem/rust-cache@v2 62 64 - uses: actions-rs/cargo@v1 63 65 with: { command: check, args: --workspace } 64 66 - uses: actions-rs/cargo@v1 ··· 72 74 run: sudo apt-get update && sudo apt-get install -y ffmpeg 73 75 - uses: actions-rs/toolchain@v1 74 76 with: { toolchain: stable } 77 + - uses: Swatinem/rust-cache@v2 75 78 - uses: actions-rs/cargo@v1 76 79 with: { command: test, args: --workspace }
+1
.github/workflows/deploy.yml
··· 10 10 - uses: actions/checkout@v2 11 11 - uses: jetli/wasm-pack-action@v0.4.0 12 12 with: { version: v0.13.1 } 13 + - uses: Swatinem/rust-cache@v2 13 14 - uses: extractions/setup-just@v2 14 15 - run: just web 15 16 - uses: peaceiris/actions-gh-pages@v3
+1
.github/workflows/docs.yml
··· 13 13 - run: sudo apt-get update && sudo apt-get install -y ffmpeg 14 14 - uses: actions-rs/toolchain@v1 15 15 with: { toolchain: stable } 16 + - uses: Swatinem/rust-cache@v2 16 17 - uses: actions-rs/cargo@v1 17 18 with: { command: doc, args: --no-deps } 18 19 - uses: extractions/setup-just@v2