Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
saagarjha committed Jan 20, 2024
1 parent 1a978d6 commit 019ff40
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
pull_request:
branches: [main]

jobs:
test:
strategy:
matrix:
scheme: [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

0 comments on commit 019ff40

Please sign in to comment.