Add copyright notice to README #23
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: Governance-Ledger | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install package | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e ".[dev]" | |
| - name: Run tests | |
| run: python -m pytest -q | |
| - name: Generate draft governance artifacts | |
| run: governance-ledger run policies --pr-summary governance-review-summary.md | |
| - name: Check validation severity gate | |
| run: governance-ledger check generated | |
| - name: Upload governance review summary | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: governance-review-summary | |
| path: governance-review-summary.md |