Skip to content

chore: Re-add the example of generated code for documentation #14

chore: Re-add the example of generated code for documentation

chore: Re-add the example of generated code for documentation #14

Workflow file for this run

name: Format test
on:
push:
paths-ignore:
- "**.md"
- LICENSE
- .github/FUNDING.yml
- .gitignore
pull_request:
paths-ignore:
- "**.md"
- "**/LICENSE"
- .github/FUNDING.yml
- .editorconfig
- .gitignore
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Check Format
run: cargo fmt -- --check