This repository was archived by the owner on May 5, 2026. It is now read-only.
CI #202
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
| # Sovereign CI — calls reusable workflow from paiml/.github | |
| # Change once in paiml/.github → applies to all repos | |
| # | |
| # Jobs provided by sovereign-ci.yml: | |
| # test: cargo test --lib (self-hosted clean-room) | |
| # lint: cargo clippy --all-targets -- -D warnings + cargo fmt --check | |
| # coverage: cargo llvm-cov + codecov upload | |
| # security: cargo audit (ubuntu-latest, continue-on-error) | |
| # provenance: SLSA attest-build-provenance | |
| # gate: aggregates test+lint results | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: paiml/.github/.github/workflows/sovereign-ci.yml@main | |
| with: | |
| repo: ${{ github.event.repository.name }} | |
| secrets: inherit | |