Skip to content

[v0.4] feat(cli): add node info command with health and latency reporting #123

[v0.4] feat(cli): add node info command with health and latency reporting

[v0.4] feat(cli): add node info command with health and latency reporting #123

Workflow file for this run

name: tests
on:
pull_request:
branches: [main]
concurrency:
group: tests-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
pkg-config clang cmake libhwloc-dev libudev-dev
- uses: Swatinem/rust-cache@v2
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: test
run: cargo test --workspace