Replace the search indicator with a real editable field #149
Workflow file for this run
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: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build (Swift 6, macOS) | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode 26.3 | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.3' | |
| - name: Show toolchain | |
| run: swift --version | |
| - name: Build (debug) | |
| run: swift build -v | |
| - name: Build app bundle | |
| run: VERSION=0.0.0 BUILD=ci ./scripts/build_app.sh |