Skip to content

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

Raft implemented & Several bug fixes (#19)

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

Workflow file for this run

name: Format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add rustfmt component
run: rustup component add rustfmt
- name: Format check (Rust)
run: cargo fmt --all -- --check
- name: Format check (Python)
uses: psf/black@stable