We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c3ff9a commit 1665ce8Copy full SHA for 1665ce8
.github/workflows/grade-junit.sh
@@ -0,0 +1,11 @@
1
+#!/bin/sh
2
+passed=$1
3
+failed=$2
4
+skipped=$3
5
+total=$((passed + failed + skipped))
6
+
7
+if [ -n "$GITHUB_OUTPUT" ]; then
8
+ echo "total=$total" >> "$GITHUB_OUTPUT"
9
+fi
10
11
+echo "$passed of $total tests passed"
0 commit comments