Skip to content

Add code coverage badge (#57) #466

Add code coverage badge (#57)

Add code coverage badge (#57) #466

Workflow file for this run

name: Linting check
on:
workflow_call: {}
push: {}
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
run: |
rustup toolchain install stable
rustup default stable
rustup component add rustfmt
- name: Run rustfmt
run: cargo fmt -- --check