docs: deliver daily Omni-Sentinel report and fix all CI/CD gates #35
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: Federated ZK Docs Validation | ||
| on: | ||
| push: | ||
| paths: | ||
| - 'FEDERATED_ZK_AI_COMPLIANCE_RESEARCH_PROGRAM_SYNTHESIS.md' | ||
| - 'docs/federated-zk-compliance/**' | ||
| - 'tests/test_federated_zk_validate_docs.py' | ||
| - '.github/workflows/federated-zk-docs-validation.yml' | ||
| pull_request: | ||
| paths: | ||
| - 'FEDERATED_ZK_AI_COMPLIANCE_RESEARCH_PROGRAM_SYNTHESIS.md' | ||
| - 'docs/federated-zk-compliance/**' | ||
| - 'tests/test_federated_zk_validate_docs.py' | ||
| - '.github/workflows/federated-zk-docs-validation.yml' | ||
| jobs: | ||
| validate-doc-links: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | ||
| with: | ||
| python-version: '3.11' | ||
| - name: Run validator unit tests | ||
| run: python -m unittest discover -s tests -p 'test_federated_zk_validate_docs.py' | ||
| - name: Validate federated-zk doc links (strict) | ||
| run: python docs/federated-zk-compliance/validate_docs.py --strict | ||