Skip to content

Commit 862da21

Browse files
committed
hmon: add heartbeat monitor
Add heartbeat monitor HMON.
1 parent 84303c2 commit 862da21

16 files changed

Lines changed: 1707 additions & 145 deletions

File tree

.github/workflows/lint_clippy.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,14 @@ jobs:
4848
override: true
4949
components: clippy
5050

51-
- name: check clippy errors
51+
- name: check clippy errors (with "--features stub_supervisor_api_client")
5252
uses: actions-rs/cargo@v1
5353
with:
5454
command: clippy
55-
args: --all-features --all-targets --workspace -- -D warnings
55+
args: --features stub_supervisor_api_client --all-targets -- -D warnings
56+
57+
- name: check clippy errors (with "--features score_supervisor_api_client")
58+
uses: actions-rs/cargo@v1
59+
with:
60+
command: clippy
61+
args: --features score_supervisor_api_client --no-default-features --all-targets -- -D warnings

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"rust-analyzer.cargo.cfgs": [
1010
"!miri"
1111
],
12+
"rust-analyzer.cargo.features": [
13+
"stub_supervisor_api_client"
14+
],
1215
"rust-analyzer.check.command": "clippy",
1316
"rust-analyzer.rustfmt.overrideCommand": [
1417
"${workspaceFolder}/.vscode/rustfmt.sh"

0 commit comments

Comments
 (0)