-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (26 loc) · 974 Bytes
/
Copy pathci.yml
File metadata and controls
33 lines (26 loc) · 974 Bytes
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
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
python-version: "3.11"
- name: Install deps
run: uv sync --extra dev
- name: Lint
run: uv run ruff check .
- name: Test
run: uv run pytest -q
- name: Catalog drift
# CHANGELOG.md는 의도적으로 제외한다: changelog.d/ 조각은 릴리스(통합) 단계에서만
# CHANGELOG.md로 합본된다(AGENTS.md 규칙5 · changelog.d/README.md). 개별 기여 PR은
# 조각만 추가하므로 여기서 합본 결과를 강제하면 모든 신규 서비스/스킬 PR이 깨진다.
run: |
uv run arcsolve catalog
git diff --exit-code docs/services.md docs/skills.md