Skip to content

Commit

Permalink
cc
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed May 5, 2024
1 parent 2217bae commit 6bc3973
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
am -i $app && echo "OK: $app" >> results/good || echo "FAIL! $app" >> results/bad

Check failure on line 45 in .github/workflows/test-apps.yml

View workflow job for this annotation

GitHub Actions / yaml lint

[yamllint] reported by reviewdog 🐶 [warning] line too long (93 > 80 characters) (line-length) Raw Output: .github/workflows/test-apps.yml:45:81: [warning] line too long (93 > 80 characters) (line-length)
am -R $app && echo "OK: $app" >> results/removed || echo "REMOVE! $app" >> results/noremoved

Check failure on line 46 in .github/workflows/test-apps.yml

View workflow job for this annotation

GitHub Actions / yaml lint

[yamllint] reported by reviewdog 🐶 [warning] line too long (104 > 80 characters) (line-length) Raw Output: .github/workflows/test-apps.yml:46:81: [warning] line too long (104 > 80 characters) (line-length)
done
GOOD=$(cat results/good | wc -l)
BAD=$(cat results/bad | wc -l)
REMOVED=$(cat results/removed | wc -l)
NOREMOVED=$(cat results/noremoved | wc -l)
good=$(cat results/good | wc -l)
bad=$(cat results/bad | wc -l)
removed=$(cat results/removed | wc -l)
noremoved=$(cat results/noremoved | wc -l)
echo -e "\n\n"
echo "all/runed/ok/failed/removed/not"
echo "$COUNT/$N/$GOOD/$BAD/$REMOVED/$NOREMOVED"
echo "$count/$n/$good/$bad/$removed/$noremoved"
echo -e "\n\n"
printf '\n\tTest finished\n'
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6bc3973

Please sign in to comment.