chore(release): v3.0.1 — unified production release across EmbeddedOS… #15
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: check-canon | |
| on: | |
| push: | |
| paths: | |
| - '**/*.html' | |
| - '**/*.md' | |
| - 'scripts/check-product-canon.py' | |
| - '.github/workflows/check-canon.yml' | |
| pull_request: | |
| paths: | |
| - '**/*.html' | |
| - '**/*.md' | |
| - 'scripts/check-product-canon.py' | |
| - '.github/workflows/check-canon.yml' | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| validate: | |
| name: Validate canonical product/book counts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Run canonical-content validator | |
| run: python scripts/check-product-canon.py |