-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vladimir Espinola
committed
May 29, 2024
1 parent
fc1cdbe
commit 9910df3
Showing
2 changed files
with
41 additions
and
10 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- swift-migration | ||
- main | ||
- feature/* | ||
|
||
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 |