Refactoring: node state writes go through the same accessor method. #206
Workflow file for this run
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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- "Cargo.lock" | |
- "Cargo.toml" | |
- "scuttlebutt/**" | |
- "scuttlebutt-*/**" | |
env: | |
RUSTFLAGS: -Dwarnings | |
RUST_BACKTRACE: 1 | |
jobs: | |
check: | |
name: Check (fmt, dependency check, clippy, test) | |
runs-on: ubuntu-latest | |
container: public.ecr.aws/l6o9a3f9/quickwit-builder:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo | |
target/ | |
key: ${{ runner.os }}-cargolint-${{ hashFiles('Cargo.lock') }} | |
- name: rustfmt | |
run: cargo +nightly fmt --all -- --check | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --workspace --tests | |
- uses: actions-rs/cargo@v1 | |
name: cargo test | |
with: | |
command: test | |
args: --release -- --test-threads 1 |