Move menu bar appearance manager to app state #657
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] |