Switched build to macOS 15, and update UI queries in tests as needed. #101
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: Build and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-run-unit-tests: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: xcodebuild build -scheme CCMenu -destination 'platform=macOS' | |
- name: Run unit tests | |
run: xcodebuild test -scheme CCMenu -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]} | |
run-uitests: | |
needs: build-and-run-unit-tests | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run UI tests | |
run: xcodebuild test -scheme CCMenu.UITests -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]} | |