Skip to content

simulate replica repair but need to work more on it #88

simulate replica repair but need to work more on it

simulate replica repair but need to work more on it #88

Workflow file for this run

name: RAFT-RS CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check formatting
run: cargo fmt -- --check
- name: Check Unused Dependencies
run: |
cargo install cargo-machete
cargo machete
- name: Check Linting
run: cargo clippy -- -D warnings
- name: Unit test
run: cargo test
- name: Build project
run: cargo build