Skip to content

Commit 4a63acd

Browse files
committed
Revert "ci: add code coverage support"
This reverts commit 03f30cb. Signed-off-by: Gris Ge <fge@redhat.com>
1 parent 69855c1 commit 4a63acd

1 file changed

Lines changed: 6 additions & 15 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18-
- name: Install Rust Stable
19-
run: |
20-
rustup override set stable
21-
rustup update stable
22-
rustup component add llvm-tools-preview
23-
24-
- name: Install cargo-llvm-cov
25-
uses: taiki-e/install-action@cargo-llvm-cov
26-
27-
- name: Test and Generate code coverage
28-
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
29-
- name: Upload coverage to Codecov
30-
uses: codecov/codecov-action@v3
18+
- uses: actions-rs/toolchain@v1
3119
with:
32-
files: lcov.info
33-
fail_ci_if_error: true
20+
toolchain: stable
21+
override: true
22+
23+
- name: Test with default feature
24+
run: cargo test

0 commit comments

Comments
 (0)