fix(hooks): grep -vxF full-line diagnostic routing + atomic marker re… #1
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: Hooks Check | |
| on: | |
| push: | |
| paths: | |
| - 'hooks/**' | |
| - 'tests/hook-contracts.sh' | |
| - 'tests/hook-stdout-discipline.sh' | |
| - '.github/workflows/hooks-check.yml' | |
| pull_request: | |
| paths: | |
| - 'hooks/**' | |
| - 'tests/hook-contracts.sh' | |
| - 'tests/hook-stdout-discipline.sh' | |
| jobs: | |
| hooks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install jq | |
| run: sudo apt-get update && sudo apt-get install -y jq | |
| - name: Hook contract tests | |
| run: bash tests/hook-contracts.sh | |
| - name: Hook stdout discipline tests | |
| run: bash tests/hook-stdout-discipline.sh |