Add QSDM-native signed Hive releases #12
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: NGC sidecar | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - "apps/qsdm-nvidia-ngc/**" | |
| - ".github/workflows/ngc-sidecar.yml" | |
| pull_request: | |
| paths: | |
| - "apps/qsdm-nvidia-ngc/**" | |
| - ".github/workflows/ngc-sidecar.yml" | |
| concurrency: | |
| group: ngc-sidecar-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Compile and test the NGC proof sidecar | |
| working-directory: apps/qsdm-nvidia-ngc | |
| run: | | |
| python -m py_compile validator_phase1.py test_validator_phase1.py | |
| python -m unittest -v test_validator_phase1.py |