Skip to content

Commit

Permalink
Create swift-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercy811 committed Mar 6, 2024
1 parent 5fb7796 commit 6a4c481
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/swift-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Swift Lint

on: [pull_request]

jobs:
lint:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set Xcode 14
run: |
sudo xcode-select -switch /Applications/Xcode_14.1.app
- name: Lint
run: cd ios && swiftlint --strict # force to fix warnings too

0 comments on commit 6a4c481

Please sign in to comment.