chore: bump version to 1.0.1 and resilient homebrew tap release step #48
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-26 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Select Xcode 26 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.6' | |
| - 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 |