Skip to content

serialize with indent #48

serialize with indent

serialize with indent #48

Workflow file for this run

name: Rust Format Check
on:
workflow_dispatch:
push:
paths:
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
- 'Cargo.lock'
jobs:
rustfmt:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Run rustfmt
run: cargo fmt -- --check