instruction on how to test if node is alive #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
# https://doc.rust-lang.org/cargo/reference/profiles.html#release | |
RUSTFLAGS: -Coverflow-checks=y -Cdebug-assertions=y | |
# https://doc.rust-lang.org/cargo/reference/profiles.html#incremental | |
CARGO_INCREMENTAL: 1 | |
# https://nexte.st/book/pre-built-binaries.html#using-nextest-in-github-actions | |
CARGO_TERM_COLOR: always | |
jobs: | |
run_checks: | |
runs-on: ubuntu-latest | |
name: Run some basic checks and tests | |
steps: | |
# | |
# Setup | |
# | |
- name: Checkout PR | |
uses: actions/checkout@v2 | |
- name: Set up cargo/rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: "1.75.0" | |
components: rustfmt, clippy | |
# https://github.com/Swatinem/rust-cache | |
- name: Cache Rust stuff | |
uses: Swatinem/rust-cache@v1 | |
- name: Install latest nextest release | |
uses: taiki-e/install-action@nextest | |
# | |
# Tests | |
# | |
- name: Test with latest nextest release (faster than cargo test) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: nextest | |
args: run --all-features --release | |
# | |
# Coding guidelines | |
# | |
- name: Enforce formating | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: -- --check | |
- name: Lint (clippy) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-features -- -D warnings |