feat(storage): replace the LMDB chunk store with one file per chunk, and migrate onto it #206
Workflow file for this run
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: ADR Governance | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/adr/**' | |
| - '.adr-kit.yaml' | |
| - 'scripts/adr-governance.py' | |
| - '.github/workflows/adr-governance.yml' | |
| push: | |
| branches: | |
| - main | |
| - master | |
| paths: | |
| - 'docs/adr/**' | |
| - '.adr-kit.yaml' | |
| - 'scripts/adr-governance.py' | |
| - '.github/workflows/adr-governance.yml' | |
| jobs: | |
| adr-governance: | |
| name: Validate ADRs and immutable Accepted status | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run ADR governance checks | |
| run: python3 scripts/adr-governance.py |