Skip to content

Fix code owners

Fix code owners #69

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: purple-mcp-unit-tests-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
unit-tests:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Python and uv
uses: ./.github/actions/setup-python-uv
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: |
uv run --python=${{ matrix.python-version }} --group=test pytest -n auto tests/ --ignore=tests/integration/ --cov=src/purple_mcp --cov-report=term