We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44bb25e commit 99cb3b7Copy full SHA for 99cb3b7
1 file changed
.github/workflows/benchmarks.yml
@@ -170,6 +170,15 @@ jobs:
170
if: steps.kvm_check.outputs.available == 'true'
171
run: pyhl setup --from src-dir --force
172
173
+ - name: "Smoke: verify pyhl run works"
174
+ if: steps.kvm_check.outputs.available == 'true'
175
+ run: |
176
+ echo "--- snapshot and system info ---"
177
+ ls -lh .pyhl/
178
+ free -h
179
+ echo "--- smoke test ---"
180
+ pyhl run -c "print('smoke ok')" || { echo "FAIL: pyhl run exited $?"; exit 1; }
181
+
182
- name: "Perf: hello world (15 runs)"
183
184
run: |
0 commit comments