security: sanitized VHS demos and purge leaked history tooling #130
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: Validate Hermes Profile Template | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install validation dependencies | |
| run: python -m pip install -r requirements.txt | |
| - name: Compile scripts | |
| run: make compile | |
| - name: Validate repository profile distribution | |
| run: make validate | |
| - name: Smoke-test install path | |
| run: make smoke |