chore: bump version to 1.2.0 (#12) #44
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: Quality Check | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| quality-check: | |
| name: SwiftLint & SwiftFormat | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: brew bundle | |
| - name: Run SwiftLint | |
| uses: cirruslabs/swiftlint-action@v1 | |
| with: | |
| version: latest | |
| - name: Run SwiftFormat | |
| run: swiftformat --lint --config .swiftformat --reporter github-actions-log Sources |