Skip to content

ci: add job to check code format #1

ci: add job to check code format

ci: add job to check code format #1

Workflow file for this run

name: Check Code Format
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
RUST_BACKTRACE: 1
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
run: rustup default nightly
- name: Check Format
run: cargo fmt --all -- --check