Skip to content

Commit

Permalink
Update lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer authored Nov 5, 2024
1 parent 9e2de94 commit 68d2b66
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,24 @@ jobs:
name: Run swiftlint
runs-on: warp-macos-14-arm64-6x
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- uses: actions/checkout@v3
- run: pod lib lint --allow-warnings

# Install swiftlint
- name: Install swiftlint
run: brew install swiftlint

# Run swiftlint
- name: Run swiftlint
run: swiftlint Sources/ XMTPiOSExample/XMTPiOSExample

# Install CocoaPods dependencies
- name: Install CocoaPods dependencies
run: pod install

# Lint the podspec
- name: Lint podspec
run: pod lib lint --allow-warnings

0 comments on commit 68d2b66

Please sign in to comment.