docs: add MCP server documentation for v1.3.0 #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main, develop ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e ".[dev]" | |
| python -m pip install types-PyYAML types-requests types-setuptools | |
| - name: Run tests | |
| run: | | |
| pytest --cov=src/netbird --cov-report=term-missing | |
| - name: Run type checking | |
| run: mypy src/ | |
| continue-on-error: true # Allow pipeline to continue even if mypy fails | |
| - name: Run linting | |
| run: | | |
| black --check src/ tests/ | |
| isort --check-only src/ tests/ | |
| flake8 src/ tests/ --max-line-length=88 |