feat(spec): add .sourceos/manifest.json (#27) #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate BootReleaseSet contracts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Validate native sourceos-boot example | |
| run: python src/sourceos_boot/validate_boot_release_set.py examples/boot-release-set.example.json | |
| - name: Run tests | |
| run: | | |
| python -m pip install --upgrade pip pytest jsonschema | |
| python -m pytest |