From 7c757417bdcc305046372acf81cec4cdb1c9890f Mon Sep 17 00:00:00 2001 From: Alexander Lyon Date: Tue, 5 Sep 2023 11:24:17 +0100 Subject: [PATCH] rip out cargo-llvm-cov --- .github/workflows/async-stripe.yml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/.github/workflows/async-stripe.yml b/.github/workflows/async-stripe.yml index 8c0c3e106..a3fb5fb00 100644 --- a/.github/workflows/async-stripe.yml +++ b/.github/workflows/async-stripe.yml @@ -120,16 +120,18 @@ jobs: ~/.cargo/git target key: ${{ runner.os }}-test-${{ matrix.runtime }}-${{ hashFiles('**/Cargo.lock') }} - - uses: taiki-e/install-action@cargo-llvm-cov - - name: Test and gather coverage - run: cargo llvm-cov --lcov --output-path lcov.info --features runtime-${{ matrix.runtime }} - - name: Upload to codecov.io - uses: codecov/codecov-action@v2.1.0 - with: - token: ${{secrets.CODECOV_TOKEN}} - files: lcov.info - - name: Archive code coverage results - uses: actions/upload-artifact@v1 - with: - name: code-coverage-report - path: lcov.info + - name: Test + run: cargo test --features runtime-${{ matrix.runtime }} + # - uses: taiki-e/install-action@cargo-llvm-cov + # - name: Test and gather coverage + # run: cargo llvm-cov --lcov --output-path lcov.info --features runtime-${{ matrix.runtime }} + # - name: Upload to codecov.io + # uses: codecov/codecov-action@v2.1.0 + # with: + # token: ${{secrets.CODECOV_TOKEN}} + # files: lcov.info + # - name: Archive code coverage results + # uses: actions/upload-artifact@v1 + # with: + # name: code-coverage-report + # path: lcov.info