Merge pull request #104 from makai410/josh-history #33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run a job to ensure formatting is OK | |
name: Format Check | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run Rust Format | |
run: cargo fmt --check |