Skip to content

split workspaces into sample/custom sections with ROI tutorial and on… #151

split workspaces into sample/custom sections with ROI tutorial and on…

split workspaces into sample/custom sections with ROI tutorial and on… #151

Workflow file for this run

name: Lint
on:
push:
branches: [main]
jobs:
python-lint:
if: github.repository == 'BMDSoftware/MedGov-AI-MCP'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check orchestrator/ mcp-monai/ mcp-radlex/ mcp-utils/
frontend-lint:
if: github.repository == 'BMDSoftware/MedGov-AI-MCP'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm ci
- name: Run ESLint
working-directory: frontend
run: npm run lint