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 2f533cb commit 0bc00eaCopy full SHA for 0bc00ea
.github/workflows/test.yml
@@ -40,4 +40,12 @@ jobs:
40
41
- name: Run DASL Python harness.
42
working-directory: dasl-testing
43
- run: uv run --with cbor2 python harnesses/python/main.py libipld
+ 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