Skip to content

fix: harden mcp stdio startup and artifact ensure flow #39

fix: harden mcp stdio startup and artifact ensure flow

fix: harden mcp stdio startup and artifact ensure flow #39

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -e .[dev]
- name: Check for tracked artifacts
run: python scripts/check_no_data_tracked.py
- name: Run tests
run: pytest