-
Notifications
You must be signed in to change notification settings - Fork 14
hmon: add heartbeat monitor #67
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,8 +48,14 @@ jobs: | |
| override: true | ||
| components: clippy | ||
|
|
||
| - name: check clippy errors | ||
| - name: check clippy errors (with "--features stub_supervisor_api_client") | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: clippy | ||
| args: --all-features --all-targets --workspace -- -D warnings | ||
| args: --features stub_supervisor_api_client --all-targets -- -D warnings | ||
|
|
||
| - name: check clippy errors (with "--features score_supervisor_api_client") | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: clippy | ||
| args: --features score_supervisor_api_client --no-default-features --all-targets -- -D warnings | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Compared to the previous workflow, these clippy invocations no longer pass
--workspace, which can reduce lint coverage to only the default package(s) and miss issues in other workspace crates (e.g., examples). If feature conflicts were the reason for dropping--workspace, consider (1) keeping a separatecargo clippy --workspacestep without feature overrides, and (2) running feature-specific clippy scoped to-p health_monitoring_lib.