Skip to content

Update README

Update README #15

Workflow file for this run

name: Format
on:
pull_request:
push:
branches: [main, develop]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- name: Format Code
run: cargo +nightly fmt