Skip to content

Raft implemented & Several bug fixes (#19) #52

Raft implemented & Several bug fixes (#19)

Raft implemented & Several bug fixes (#19) #52

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --workspace --verbose
- name: Add clippy component
run: rustup component add clippy
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --workspace