Skip to content

docs(usage): re-add missing param #58

docs(usage): re-add missing param

docs(usage): re-add missing param #58

Workflow file for this run

name: Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Format code
run: cargo fmt --all
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "style: apply automatic formatting"
file_pattern: '**/*.rs'