Skip to content

chore: rename heartbeats to heartbeat #761

chore: rename heartbeats to heartbeat

chore: rename heartbeats to heartbeat #761

Workflow file for this run

name: Rust merge checks
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install nightly rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Cargo fmt
run: cargo +nightly fmt --all -- --check
- name: Install stable rust toolchain
uses: dtolnay/[email protected]
with:
components: clippy
- name: Cargo check
run: cargo check
- name: Cargo test
run: cargo test
- name: Cargo clippy
run: cargo clippy -- -D warnings