chore(deps): bump surrealdb from 3.0.3 to 3.0.5 #70
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 | |
| on: | |
| pull_request: | |
| merge_group: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup build environment | |
| uses: ./.github/actions/setup-build-environment | |
| - name: Audit architecture boundaries | |
| run: cargo xtask architecture audit-boundaries | |
| - name: Validate governed plugin manifests | |
| run: cargo xtask plugin validate-manifests | |
| - name: Audit documented process against automation | |
| run: cargo xtask github audit-process | |
| - name: Validate PR governance | |
| if: ${{ github.event_name == 'pull_request' }} | |
| run: cargo xtask github validate-pr --event-path "$GITHUB_EVENT_PATH" --config .github/governance.toml | |
| - name: Upload process audit artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: process-audit | |
| path: target/process-audit |