Support building natively on Android (bionic) hosts #308
Workflow file for this run
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@v6 | |
| - 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 |