-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (62 loc) · 1.77 KB
/
Copy pathpython-ci.yml
File metadata and controls
77 lines (62 loc) · 1.77 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
name: Python CI
on:
pull_request:
types: [opened, synchronize, reopened, edited]
push:
branches:
- main
- master
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
spec-evidence:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Check Spec evidence gate
run: >
make spec-evidence-gate
SPEC_EVIDENCE_BASE_REF="${{ github.event.pull_request.base.sha }}"
SPEC_EVIDENCE_HEAD_REF="${{ github.event.pull_request.head.sha }}"
python-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install project and dev dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run blocking Python and spec YAML quality checks
run: python tools/python_quality.py
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install project and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Check proposal tracking gate
run: make proposal-tracking-gate
- name: Check DocC documentation sync
run: make docc-sync
- name: Run tests
run: pytest -q