This repository was archived by the owner on Jan 7, 2026. It is now read-only.
feat(tweak): add option to always show search bar (#28) #92
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: | |
| - '*' | |
| jobs: | |
| build-latest: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run Build | |
| run: swift build | |
| unit_test-latest: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run tests | |
| run: swift test --enable-test-discovery --enable-code-coverage | xcpretty | |
| build-ventura: | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '14.3.1' | |
| - '15.2' | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Run Build | |
| run: swift build | |
| unit_test-ventura: | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '14.3.1' | |
| - '15.2' | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Run tests | |
| run: swift test --enable-test-discovery --enable-code-coverage | xcpretty | |
| build-sonoma: | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '15.4' | |
| - '16.1' | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Run Build | |
| run: swift build | |
| unit_test-sonoma: | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '15.4' | |
| - '16.1' | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Run tests | |
| run: swift test --enable-test-discovery --enable-code-coverage | xcpretty |