Skip to content

CI

CI #7

Workflow file for this run

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