Skip to content

Commit

Permalink
just look at totals
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 26, 2025
1 parent 4fb9998 commit e009838
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,9 @@ jobs:
exit 1
fi
cat test.data
wc -l test.data
cat test.data | wc -l
if [ "$(wc -l test.data)" -ne "19" ]; then
if [ "$(cat test.data | grep total | wc -l )" -ne "19" ]; then
echo "test.data has wrong number of lines"
exit 1
fi

0 comments on commit e009838

Please sign in to comment.