Bump deployment to macOS 13, iOS 16 (#173) #109
  
    
      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
    
  
  
    
  | on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - '.github/workflows/swiftlint.yml' | |
| - '.swiftlint.yml' | |
| - '**/*.swift' | |
| jobs: | |
| swiftlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Lint | |
| run: | | |
| make lint SWIFTLINT_FLAGS='--reporter=github-actions-logging' | tee swiftlint.log | |
| # fail if there are any errors or warnings | |
| ! grep -Eq '^::(error|warning)' swiftlint.log |