Adds support for rules_swift 2.x. #316
Workflow file for this run
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: xcodebuild | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
Xcode: | |
strategy: | |
matrix: | |
xcode_version: ['14.3.1', '15.2', '15.3'] | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ matrix.xcode_version }} | |
- run: xcodebuild -version | |
- run: xcodebuild -scheme sourcekitten -parallel-testing-enabled NO test -destination platform=macOS |