Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Lint code

on: push

# Allow one concurrent deployment
concurrency:
group: "linting"
cancel-in-progress: true
Expand All @@ -12,7 +11,12 @@ jobs:
runs-on: macOS-14
steps:
- uses: actions/checkout@v4

- name: Switch Xcode 🔄
run: sudo xcode-select --switch /Applications/Xcode_15.0.app
- name: Swift Lint

- name: Install SwiftLint
run: brew install swiftlint

- name: SwiftLint
run: swiftlint --strict
Loading