Skip to content

🐛 remove invalid fastmcp start parameter #1476

🐛 remove invalid fastmcp start parameter

🐛 remove invalid fastmcp start parameter #1476

Workflow file for this run

name: Test Code on PR
on: [pull_request]
jobs:
test-code-on-pr:
name: Test Code on PR Runner
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
architecture: ["x64"]
defaults:
run:
shell: bash
working-directory: ./kai_mcp_solution_server
env:
COVERAGE_REPORT_DIR: coverage-report-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Set up prerequisites
run: |
git config --global user.email "tester@example.com"
git config --global user.name "Tester"
- name: Test kai_mcp_solution_server
run: ./run_tests.sh
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: ${{ env.COVERAGE_REPORT_DIR }}
path: ${{ env.COVERAGE_REPORT_DIR }}
if: ${{ always() }}