From 7ba01396cefc19f1721e922c76c88ae3f97f116f Mon Sep 17 00:00:00 2001 From: Jonas Spinner Date: Sun, 9 Jun 2024 11:51:13 +0200 Subject: [PATCH] CI: Remove workspace coverage --- .github/workflows/ci.yaml | 45 +++------------------------------------ 1 file changed, 3 insertions(+), 42 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f7ec579..8cbdc8e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -75,8 +75,8 @@ jobs: command: clippy args: -- -D warnings - coverage-crate: - name: Coverage crate + coverage: + name: Coverage runs-on: ubuntu-latest steps: - name: Checkout repository and submodules @@ -95,43 +95,4 @@ jobs: command: llvm-cov args: --lcov --package modular-decomposition --output-path lcov.info - name: Coveralls - uses: coverallsapp/github-action@v2 - with: - flag-name: crate - parallel: true - - coverage-workspace: - name: Coverage workspace - runs-on: ubuntu-latest - steps: - - name: Checkout repository and submodules - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - uses: taiki-e/install-action@cargo-llvm-cov - - name: Run llvm-cov - uses: actions-rs/cargo@v1 - with: - command: llvm-cov - args: --lcov --workspace --output-path lcov.info - - name: Coveralls - uses: coverallsapp/github-action@v2 - with: - flag-name: workspace - parallel: true - - finish: - needs: [ coverage-crate, coverage-workspace ] - if: ${{ always() }} - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@v2 - with: - parallel-finished: true - carryforward: "crate,workspace" \ No newline at end of file + uses: coverallsapp/github-action@v2 \ No newline at end of file