feat: add MCP server instructions for tool search support #3018
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: Run Linters | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| env: | |
| AIRBYTE_ANALYTICS_ID: ${{ vars.AIRBYTE_ANALYTICS_ID }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| ruff-lint-check: | |
| name: Ruff Lint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Common steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec # v9 | |
| with: | |
| poetry-version: "2.2.0" | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec # v9 | |
| with: | |
| poetry-version: "2.2.0" | |
| - name: Install dependencies | |
| run: poetry install | |
| # Job-specifc step(s): | |
| - name: Format code | |
| run: poetry run ruff check . | |
| ruff-format-check: | |
| name: Ruff Format Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Common steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec # v9 | |
| with: | |
| poetry-version: "2.2.0" | |
| - name: Install dependencies | |
| run: poetry install | |
| # Job-specifc step(s): | |
| - name: Check code format | |
| run: poetry run ruff format --diff . | |
| python-type-checks: | |
| name: Python Type Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Common steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec # v9 | |
| with: | |
| poetry-version: "2.2.0" | |
| - name: Set up Python | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec # v9 | |
| with: | |
| poetry-version: "2.2.0" | |
| - name: Install dependencies | |
| run: poetry install | |
| # Job-specifc step(s): | |
| - name: Run Pyrefly Check | |
| run: poetry run pyrefly check |