CI #6
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: CI | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Switch to Xcode 16.2 | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
- name: Show xcodebuild version | |
run: xcodebuild -version | |
- name: Show build settings | |
run: xcodebuild -showBuildSettings | |
- name: Show SDKs | |
run: xcodebuild -showsdks | |
- name: Show destinations | |
run: xcodebuild -scheme ReviewCount -showdestinations | |
- name: Test | |
run: xcodebuild -destination platform=macOS -scheme ReviewCount -resultBundlePath test.xcresult test | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: test.xcresult |