Skip to content

docs: first draft of USAGE.md #20

docs: first draft of USAGE.md

docs: first draft of USAGE.md #20

Workflow file for this run

name: Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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@v4
with:
commit_message: "style: apply automatic formatting"
file_pattern: '**/*.rs'