CI: move to macOS 15 #3
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: CI | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| jobs: | |
| lint-build-test: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install lint tools | |
| run: brew install swiftlint swiftformat | |
| - name: SwiftFormat (lint) | |
| run: swiftformat Sources Tests --lint | |
| - name: SwiftLint | |
| run: swiftlint --strict | |
| - name: Swift Test | |
| run: swift test --parallel |