Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ jobs:
- name: Check with clippy
run: cargo hack clippy --verbose --each-feature --no-dev-deps -- -D warnings

- name: Tests
run: cargo hack --each-feature llvm-cov --no-report nextest
- name: Test default feature set
run: cargo hack llvm-cov --no-report nextest

- name: Test kafka feature
run: cargo hack --features kafka llvm-cov --no-report nextest --filter-expr 'test(kafka)'

- name: Generate coverage report
run: cargo llvm-cov report --lcov --output-path coverage.lcov
Expand Down
Loading