Skip to content

Commit

Permalink
add github actions (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
QpxDesign committed Mar 2, 2024
1 parent e2f1d93 commit c013b3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Parse test results
run: |
echo "${{ steps.run_tests.outputs.result }}" | while read -r line; do
while IFS= read -r line; do
if [[ $line == *"Passed!"* ]]; then
echo "Test ${line#*#} - Passed"
else
echo "Test ${line#*#} - Failed"
exit 1
fi
done
done <<< "${{ steps.run_tests.outputs.result }}"

0 comments on commit c013b3e

Please sign in to comment.