-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (49 loc) · 1.35 KB
/
Copy pathpython-gonol.yml
File metadata and controls
52 lines (49 loc) · 1.35 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
name: python-gonol
on:
pull_request:
paths:
- "research/python-gonol/**"
- "libs/ucns/**"
- "README.md"
- "AGENTS.md"
- "STACK_MANIFEST.md"
- "stack-manifest.json"
- ".github/workflows/python-gonol.yml"
push:
branches: [main]
paths:
- "research/python-gonol/**"
- "libs/ucns/**"
- "README.md"
- "AGENTS.md"
- "STACK_MANIFEST.md"
- "stack-manifest.json"
- ".github/workflows/python-gonol.yml"
permissions:
contents: read
jobs:
contracts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install pytest
run: python -m pip install pytest
- name: Stack structural consistency
run: python tools/check_stack_consistency.py
- name: Checkout pinned UCNS Public Gonol authority
uses: actions/checkout@v6
with:
repository: The-Interdependency/ucns
ref: 62e08ee1cf3b5d7b6e48c927b1047509e6328b5c
path: .ci/ucns
persist-credentials: false
- name: Python Gonol construction tests
working-directory: research/python-gonol
env:
UCNS_SOURCE_ROOT: ${{ github.workspace }}/.ci/ucns
run: python -m pytest -q tests