Skip to content

update README link

update README link #7

name: code style checker
on:
push:
branches:
- '**'
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check