Skip to content

Add CI

Add CI #3

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
scheme: [macOS] # [macOS, visionOS]
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.2.app
- name: Build
run: xcodebuild -project MacCast.xcodeproj -scheme ${{ matrix.scheme }} CODE_SIGNING_ALLOWED=NO