Replay helper causal receipts follow-up on current main #1
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: Helper Causal Parser | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/architecture/helper-causal-receipts-v0.1.md' | |
| - 'policies/helper-receipts/**' | |
| - 'tools/unified_log_helper_parser.py' | |
| - 'tools/unified_log_helper_correlator.py' | |
| - 'tests/test_unified_log_helper_parser.py' | |
| - 'tests/test_unified_log_helper_correlator.py' | |
| - '.github/workflows/helper-causal-parser.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/architecture/helper-causal-receipts-v0.1.md' | |
| - 'policies/helper-receipts/**' | |
| - 'tools/unified_log_helper_parser.py' | |
| - 'tools/unified_log_helper_correlator.py' | |
| - 'tests/test_unified_log_helper_parser.py' | |
| - 'tests/test_unified_log_helper_correlator.py' | |
| - '.github/workflows/helper-causal-parser.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Run parser and correlator tests | |
| run: python -m unittest tests.test_unified_log_helper_parser tests.test_unified_log_helper_correlator |