Open settings pane manually if permissions check fails to do so #622
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
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/action-swiftlint@3.2.1 |