-
Notifications
You must be signed in to change notification settings - Fork 4
152 lines (127 loc) · 3.74 KB
/
ci-cd.yml
File metadata and controls
152 lines (127 loc) · 3.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
workflow_dispatch:
env:
PYTHON_VERSION: "3.12"
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Quality (format, lint, repo-map)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Sync environment and CI tools
run: |
uv sync --extra dev
uv pip install ruff black
- name: Ruff lint
run: uv run ruff check src tests
- name: Black format check
run: uv run black --check src tests
- name: Verify repository map is up to date
run: |
uv run python scripts/generate_repo_map.py
git diff --exit-code .repo-map.md
test:
name: Test (stable CI subset)
runs-on: ubuntu-latest
needs: quality
env:
ENVIRONMENT: test
LOG_LEVEL: INFO
STORAGE_PROVIDER: local
LLM_ENABLED: false
RUN_AZURE_CHAIN_TESTS: "0"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: |
uv sync --extra dev
uv pip install pytest-cov
- name: Run unit lane
run: |
uv run pytest tests \
-m "unit and not llm and not quarantine" \
--maxfail=1 \
--cov=src \
--cov-report=xml
- name: Run contract lane
run: |
uv run pytest tests \
-m "contract and not llm and not quarantine" \
--maxfail=1 \
--cov=src \
--cov-append \
--cov-report=xml
- name: Run integration lane
run: |
uv run pytest tests \
-m "integration and not llm and not quarantine" \
--ignore=tests/test_storage_to_okw_list_chain.py \
--maxfail=1 \
--cov=src \
--cov-append \
--cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: false
contract-stability:
name: Contract Stability Guardrails
runs-on: ubuntu-latest
needs: quality
env:
ENVIRONMENT: test
LOG_LEVEL: INFO
STORAGE_PROVIDER: local
LLM_ENABLED: false
RUN_AZURE_CHAIN_TESTS: "0"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --extra dev
- name: Run contract stability suite
run: |
uv run pytest \
tests/api/test_match_phase1_contract.py \
tests/api/test_relationship_endpoints.py \
tests/api/test_solution_management_endpoints.py \
tests/api/test_visualization_contract_endpoints.py \
tests/cli/test_match_cli_guidance.py \
tests/cli/test_match_visualize_cli.py \
tests/cli/test_solution_commands.py \
-m "not llm and not quarantine" \
--maxfail=1
security:
name: Security (dependency and static checks)
runs-on: ubuntu-latest
needs: quality
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies and security tools
run: |
uv sync --extra dev
uv pip install pip-audit bandit
- name: Dependency vulnerability scan
run: uv run pip-audit
- name: Static security scan
run: uv run bandit -q -r src -x tests