Merge pull request #106 from attentive-mobile/release/1.0.0 #132
This file contains 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: | |
- main | |
- "feature/*" | |
- "release/*" | |
pull_request: | |
branches: | |
- main | |
- "feature/*" | |
- "release/*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Run Swiftlint | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- name: Set Xcode 15 | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_15.3.app | |
- name: Lint | |
run: swiftlint |