Skip to content

Commit 964f614

Browse files
committed
ci: implement coverlint
1 parent 84f51e8 commit 964f614

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -312,15 +312,14 @@ jobs:
312312
run: |
313313
cargo llvm-cov --workspace --lib \
314314
--ignore-filename-regex 'proto|ledger\.v1' \
315-
--codecov \
316-
--output-path codecov.json
315+
--lcov \
316+
--output-path lcov.info
317317
318-
- name: Upload coverage to Codecov
319-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
318+
- name: Report coverage
319+
uses: evansims/coverlint@aa15ba0901ffaad70113c3ab5a54bf2e676614f8 # v1.2.5
320320
with:
321-
files: ./codecov.json
322-
fail_ci_if_error: false
323-
token: ${{ secrets.CODECOV_TOKEN }}
321+
format: lcov
322+
path: lcov.info
324323

325324
# Build documentation
326325
docs:

0 commit comments

Comments
 (0)