Standard Library Conformances #11
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
| name: Swift | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| SwiftActions: | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| - name: Lint | |
| if: ${{ runner.os == 'macOS' }} | |
| shell: bash | |
| run: swiftformat --lint . --reporter github-actions-log | |
| - name: Swift Build | |
| uses: SwiftActions/SwiftBuild@main | |
| - name: Swift Test | |
| uses: SwiftActions/SwiftTest@main | |