Skip to content

Remove workspace configuration file and update README.md with new MCP… #25

Remove workspace configuration file and update README.md with new MCP…

Remove workspace configuration file and update README.md with new MCP… #25

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
unit-tests:
name: Unit tests (py${{ matrix.python-version }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
shell: pwsh
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run unit tests (exclude integration) + coverage
shell: pwsh
run: |
pytest -m "not integration" --cov=connx_server --cov-report=term-missing --cov-fail-under=90
- name: Show versions
shell: pwsh
run: |
python --version
pip --version
pytest --version