Add catalog/IPC baselines and harden documented catalog parity #67
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, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-15 # macos-15 has Swift 6.0+, macos-latest (14) only has Swift 5.9 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Swift | |
| uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: "6.2" | |
| - name: Cache Swift packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: .build | |
| key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }} | |
| restore-keys: | | |
| ${{ runner.os }}-spm- | |
| - name: Build | |
| run: swift build -v | |
| - name: Test | |
| run: swift test -v | |
| - name: Build Release | |
| run: swift build -c release -v | |
| - name: Upload Release Binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: focus-relay-mcp-macos | |
| path: .build/release/focus-relay-mcp | |
| retention-days: 5 |