From 7255741290c83a8fe2f28208bf870c5c3c4b00e6 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Sat, 20 Jan 2024 19:08:49 -0800 Subject: [PATCH] remove codecov.yml in the reedline repo (#710) * remove codecov.yml * remove uploading code coverage in the ci.yml * add back in codecov.yml and see if just removing the action in the ci.yml works --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b8ba02d..44d4996e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,15 +46,8 @@ jobs: - name: Clippy run: cargo clippy ${{ matrix.flags }} --all-targets --all -- -D warnings - - name: Tests run: cargo llvm-cov nextest --all ${{ matrix.flags }} --lcov --output-path lcov.info - name: Doctests run: cargo test --doc ${{ matrix.flags }} - - - name: Upload coverage - uses: codecov/codecov-action@v3 - with: - files: lcov.info -