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 a198137 commit 935e19dCopy full SHA for 935e19d
.github/workflows/test.yml
@@ -927,9 +927,10 @@ jobs:
927
echo "<details>" >> comment.txt
928
echo "<summary>" >> comment.txt
929
echo "Tests passed ✓, `
930
- `Code: ${table[0,1]:-}, `
931
- `Stack: ${table[0,2]:-}, `
932
- `Structs: ${table[0,3]:-}" >> comment.txt
+ `Code: $(awk 'NR==3 {print $4}' table.txt || true), `
+ `Stack: $(awk 'NR==3 {print $6}' table.txt || true), `
+ `Structs: $(awk 'NR==3 {print $8}' table.txt || true)" \
933
+ >> comment.txt
934
echo "</summary>" >> comment.txt
935
echo >> comment.txt
936
[ -e table.txt ] && cat table.txt >> comment.txt
0 commit comments