Massive project reorganization and thread-safety updates for Swift 6. #572
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 code | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/lint.yml' | |
- '.swiftlint.yml' | |
- 'Sources/**/*.swift' | |
- 'Samples/**/*.swift' | |
branches: | |
- master | |
push: | |
paths: | |
- '.github/workflows/lint.yml' | |
- '.swiftlint.yml' | |
- 'Sources/**/*.swift' | |
- 'Samples/**/*.swift' | |
branches: | |
- master | |
jobs: | |
SwiftLint: | |
runs-on: macos-latest-large | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Lint code using SwiftLint | |
run: swiftlint lint --reporter github-actions-logging Sources Samples |