Skip to content

Commit 9cfd13f

Browse files
committed
Add operation conformance smoke CI workflow
1 parent 185d716 commit 9cfd13f

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: operation-conformance
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
smoke:
11+
name: SourceOS operation conformance smoke
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out repository
15+
uses: actions/checkout@v4
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.12'
21+
22+
- name: Run structural smoke validation
23+
run: |
24+
python3 tools/sourceos_operation_conformance.py \
25+
--examples-dir tests/fixtures/workspace-operation \
26+
--structural-only

0 commit comments

Comments
 (0)