NebulaGraph MCP Server

by PsiACE
Verified
name: Lint and Test on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest] python-version: ["3.12"] steps: - uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install uv uses: astral-sh/setup-uv@v5 with: version: latest - name: Install dependencies run: | uv sync --dev - name: Code check run: | uv run ruff check . uv run ruff format --check . - name: Run tests run: | uv run pytest -xvs tests/