Skip to content

Commit ba1da34

Browse files
committed
[bfops/unity-test-tweaks]: fix comparison
1 parent 0de6230 commit ba1da34

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/csharp-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
--status in_progress \
2626
--json status \
2727
| jq 'length')
28-
if [ "$running" -lt 2 ]; then
28+
# Use `-le` because this job itself counts as one.
29+
if [ "$running" -le 2 ]; then
2930
echo "Allowed to run"
3031
break
3132
fi

0 commit comments

Comments
 (0)