Ensure appearance panels stay pinned to the top of the screen #107
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/[email protected] |