Skip to content

ci: specify/restrict testing #1243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 16, 2025
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