feat(cohorts): Amplitude cohort sync endpoints and sync keys #229
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: MCP Pull Request | |
| permissions: | |
| contents: read # For actions/checkout | |
| on: | |
| pull_request: | |
| paths: | |
| - mcp/** | |
| - .github/** | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| push: | |
| paths: | |
| - mcp/** | |
| - .github/** | |
| branches: | |
| - main | |
| defaults: | |
| run: | |
| working-directory: mcp | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: MCP Tests | |
| steps: | |
| - name: Cloning repo | |
| uses: actions/checkout@v5 | |
| - uses: ./.github/actions/install-uv | |
| with: | |
| working-directory: mcp | |
| - name: Install dependencies | |
| run: make install | |
| - uses: liskin/gh-problem-matcher-wrap@v2 | |
| with: | |
| action: add | |
| linters: mypy | |
| - name: Check for new typing errors | |
| run: make typecheck | |
| - uses: liskin/gh-problem-matcher-wrap@v2 | |
| with: | |
| action: remove | |
| linters: mypy | |
| - name: Run tests | |
| run: make test |