Skip to content

Commit 0bc00ea

Browse files
committed
expose results to summary
1 parent 2f533cb commit 0bc00ea

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,12 @@ jobs:
4040

4141
- name: Run DASL Python harness.
4242
working-directory: dasl-testing
43-
run: uv run --with cbor2 python harnesses/python/main.py libipld
43+
run: |
44+
RESULT_JSON=$(uv run --with cbor2 python harnesses/python/main.py libipld)
45+
{
46+
echo "## DASL Results"
47+
echo
48+
echo '```json'
49+
echo "$RESULT_JSON"
50+
echo '```'
51+
} >> "$GITHUB_STEP_SUMMARY"

0 commit comments

Comments
 (0)