We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185d716 commit 9cfd13fCopy full SHA for 9cfd13f
1 file changed
.github/workflows/operation-conformance.yml
@@ -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