From 9b0230d30fd1f2bd629ceb5c9f96fc002db58c16 Mon Sep 17 00:00:00 2001 From: Karol Zwolak Date: Tue, 30 Sep 2025 22:00:37 +0200 Subject: [PATCH] don't install packages for CI jobs that don't need them Static analysis like clippy or formatting doesn't need llvm tools. --- .github/workflows/main.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 94ed5ee..8b606ee 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -14,9 +14,6 @@ jobs: - name: Install Rust run: rustup show - uses: Swatinem/rust-cache@v2 - - name: Install packages - run: | - sudo apt-get install llvm-14-tools - run: cargo clippy --manifest-path crates/Cargo.toml --all-features --all-targets -- -D warnings test: @@ -53,9 +50,6 @@ jobs: - name: Install Rust run: rustup show - uses: Swatinem/rust-cache@v2 - - name: Install packages - run: | - sudo apt-get install llvm-14-tools - run: cargo doc --manifest-path crates/Cargo.toml success: