This repository was archived by the owner on Mar 9, 2026. It is now read-only.
chore(deps): update dependency nicklockwood/swiftformat to v0.60.1 #112
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| linters: | |
| name: Run linters | |
| runs-on: macos-12 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache Mint packages | |
| id: mint-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: /Users/runner/.mint | |
| key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }} | |
| restore-keys: ${{ runner.os }}-mint- | |
| - run: brew install mint | |
| - run: mint bootstrap | |
| - run: mint run swiftformat --lint . |