From eebcb7ad501d2f4867aae70bfe2bd04683fa0abb Mon Sep 17 00:00:00 2001 From: Antonio Yang Date: Mon, 22 Apr 2024 20:44:47 +0800 Subject: [PATCH] ci: remove codecov upload --- .github/workflows/codecov.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 20773195..f0535d6a 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -43,9 +43,3 @@ jobs: run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi - name: Generate coverage run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - files: ./coverage.lcov - flags: rust - fail_ci_if_error: true