Skip to content

f

f #7

Workflow file for this run

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