-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (57 loc) · 1.92 KB
/
Copy pathci.yml
File metadata and controls
70 lines (57 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
name: Lint & test (py${{ matrix.python-version }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
env:
UV_DEFAULT_INDEX: https://pypi.org/simple
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install uv
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
with:
enable-cache: true
- name: Sync workspace
run: uv sync --frozen --all-packages --python ${{ matrix.python-version }}
- name: Lint (ruff)
run: uv run --frozen ruff check --output-format=github .
- name: Format (ruff)
run: uv run --frozen ruff format --check .
- name: Type check (pyright)
run: uv run --frozen pyright
- name: Test (pytest)
run: >-
uv run --frozen pytest ConfigurationDeskMCP/tests
--cov=sources
--cov=configurationdesk_com_bridge
--cov-report=term-missing
--cov-report=xml:coverage.xml
- name: Upload coverage report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coverage-py${{ matrix.python-version }}
path: coverage.xml
if-no-files-found: error
- name: Dependency audit
run: uv run --frozen pip-audit --skip-editable --desc
- name: Verify source CLI
shell: pwsh
run: |
uv run --frozen configurationdesk-mcp --version
uv run --frozen configurationdesk-mcp --list-tools
uv run --frozen configurationdesk-mcp --list-resources
uv run --frozen configurationdesk-mcp --list-prompts