From 45ecb8de849d505263baa43f7e6dbfc989cbd459 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Tue, 4 Jun 2024 02:51:32 +0200 Subject: [PATCH] remove coverage --- .github/workflows/ci.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1068f785..663b5ded 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,6 @@ jobs: - name: Update toolchain & add llvm-tools run: | rustup update --no-self-update - rustup component add llvm-tools-preview - name: Cache Rust dependencies uses: Swatinem/rust-cache@v2 @@ -54,20 +53,9 @@ jobs: if: startsWith(matrix.os, 'windows') run: cargo clean - - name: Install cargo-llvm-cov - uses: taiki-e/install-action@cargo-llvm-cov - - - name: Run tests and coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - name: Run doc tests run: cargo test --doc --workspace - - uses: codecov/codecov-action@v4 - with: - files: lcov.info - token: ${{ secrets.CODECOV_TOKEN }} - fmt: name: Rustfmt runs-on: ubuntu-latest