We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3bae20 commit 107d605Copy full SHA for 107d605
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ validate:
14
+ name: Validate BootReleaseSet contracts
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: "3.11"
23
+ - name: Validate examples
24
+ run: python src/sourceos_boot/validate_boot_release_set.py examples/*.json
25
+ - name: Run tests
26
+ run: |
27
+ python -m pip install --upgrade pip pytest
28
+ python -m pytest
0 commit comments