Skip to content

refactor: remove unnecessary comment #1159

refactor: remove unnecessary comment

refactor: remove unnecessary comment #1159

Workflow file for this run

name: Code formatting
on:
- push
- pull_request
jobs:
fmt_check:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check code formatting
run: cargo fmt -- --check