Renamed all packages #4
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: Test packaging scripts | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'packaging/**' | |
| - '.github/workflows/test-packaging.yml' | |
| pull_request: | |
| paths: | |
| - 'packaging/**' | |
| - '.github/workflows/test-packaging.yml' | |
| jobs: | |
| test-render-templates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Run packaging-script unit tests | |
| working-directory: packaging/scripts | |
| run: | | |
| python -m unittest test_render_templates test_verify_manifest_hashes -v |