Skip to content

Commit 3dd68ee

Browse files
committed
Remove code coverage job from CI workflow
- Eliminate Codecov upload failures due to rate limiting - CI pipeline will now only run: test, rustfmt, clippy, docs, security audit - All essential code quality checks remain in place
1 parent e04ddbc commit 3dd68ee

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -114,21 +114,4 @@ jobs:
114114
- name: Run audit
115115
run: cargo audit
116116

117-
coverage:
118-
name: Code Coverage
119-
runs-on: ubuntu-latest
120-
steps:
121-
- uses: actions/checkout@v4
122-
- uses: dtolnay/rust-toolchain@stable
123-
with:
124-
components: llvm-tools-preview
125-
- uses: Swatinem/rust-cache@v2
126-
- name: Install cargo-llvm-cov
127-
run: cargo install cargo-llvm-cov
128-
- name: Generate coverage
129-
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
130-
- name: Upload coverage
131-
uses: codecov/codecov-action@v3
132-
with:
133-
files: lcov.info
134-
fail_ci_if_error: true
117+

0 commit comments

Comments
 (0)