Skip to content

🐛 Fix bug, preventing user from opting out #26

🐛 Fix bug, preventing user from opting out

🐛 Fix bug, preventing user from opting out #26

Workflow file for this run

name: Code Formatting
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
rustup install --profile minimal nightly
rustup override set nightly
rustup component add rustfmt
- run: cargo fmt --all -- --check