From 2a821c749d94ff30f2e0a4346737c0677d9bdd98 Mon Sep 17 00:00:00 2001 From: Cole MacKenzie Date: Sun, 26 Jan 2025 09:51:17 -0800 Subject: [PATCH] ci: Remove redundant build step Running `cargo llvm-cov nextest --profile ci` builds the project anyway. --- .github/workflows/rust.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 331474d..e6777a6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,9 +26,6 @@ jobs: - name: Lint (clippy) run: cargo clippy --all-features --all-targets - - name: Build - run: cargo build --verbose - - name: Run tests (with coverage) run: cargo llvm-cov nextest --profile ci