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: macOS CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.0.1' | |
| - name: Build macOS App | |
| run: | | |
| xcodebuild clean build \ | |
| -project test.xcodeproj \ | |
| -scheme test \ | |
| -sdk macosx \ | |
| CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | |
| - name: Run Unit & UI Tests | |
| run: | | |
| xcodebuild test \ | |
| -project test.xcodeproj \ | |
| -scheme test \ | |
| -sdk macosx \ | |
| CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO |