fix: Disable swizzling for macOS 26 and above to prevent crashes #710
This file contains hidden or 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 Swift Files | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- ".github/workflows/lint.yml" | |
- ".swiftlint.yml" | |
- "**/*.swift" | |
pull_request: | |
paths: | |
- ".github/workflows/lint.yml" | |
- ".swiftlint.yml" | |
- "**/*.swift" | |
jobs: | |
swiftlint: | |
if: '!github.event.pull_request.merged' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run SwiftLint | |
uses: norio-nomura/[email protected] | |
with: | |
args: --strict |