ci: fix setup-xcode action repository name to maxim-lobanov/setup-xcode #28
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: Build & Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| name: Build & Tests | |
| runs-on: macos-14 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Select Xcode 16 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '16.2' | |
| - name: Install Tools (XcodeGen & xcbeautify) | |
| run: brew install xcodegen xcbeautify | |
| - name: Generate Xcode Project | |
| run: xcodegen generate | |
| - name: Run Full Test Suite (0 skips) | |
| run: ./scripts/test.sh | |
| - name: Build App (Release) | |
| run: ./scripts/package_app.sh |