Skip to content

chore(git): merge from master #1162

chore(git): merge from master

chore(git): merge from master #1162

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