chore: remove OAS-based implementation in favour of MCP dynamic tool fetching #116
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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.13"] | |
| include: | |
| - python-version: "3.9" | |
| test-extras: "--all-extras --no-extra mcp" | |
| - python-version: "3.10" | |
| test-extras: "--all-extras" | |
| - python-version: "3.13" | |
| test-extras: "--all-extras" | |
| env: | |
| STACKONE_API_KEY: ${{ secrets.STACKONE_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync ${{ matrix.test-extras }} | |
| - name: Run tests | |
| run: uv run pytest |