Prep CLI-only release: drop setup-mcp and forward references to the M… #25
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: Installer | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| installer-smoke: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Ensure jq is installed | |
| run: | | |
| command -v jq >/dev/null 2>&1 || brew install jq | |
| - name: Syntax check installer smoke test | |
| run: bash -n test/test_install.sh | |
| - name: Run installer smoke test | |
| run: bash test/test_install.sh |