Skip to content

refactor: cargo fmt

refactor: cargo fmt #5

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
- 'main'
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy -- -Dwarnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --all -- --check