Add MIT license to source code #2
Workflow file for this run
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
| name: SwiftFormat Check | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| swiftformat: | |
| name: Code Formatting Check | |
| runs-on: macos-26 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install swiftformat | |
| run: brew install swiftformat | |
| - name: Check code formatting | |
| run: swiftformat --lint . |