Initial commit #1
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: | | |
| xcodebuild \ | |
| -project Casa.xcodeproj \ | |
| -scheme Casa \ | |
| -configuration Debug \ | |
| -destination "platform=macOS,variant=Mac Catalyst" \ | |
| -derivedDataPath DerivedData \ | |
| build | |
| test: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test | |
| run: | | |
| xcodebuild \ | |
| -project Casa.xcodeproj \ | |
| -scheme Casa \ | |
| -configuration Debug \ | |
| -destination "platform=macOS,variant=Mac Catalyst" \ | |
| -derivedDataPath DerivedData \ | |
| test |