Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Sep 4, 2024
1 parent 0e17b0a commit 1a741a6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,11 @@ jobs:

- name: Check output has expected size
shell: bash
run: [ `cat output_dir/testing/data/f3d.vtp | wc -c` == 4104 ]
run: |
if [[ `cat output_dir/testing/data/f3d.vtp | wc -c` == 4104 ]]; then
echo "File is of expected size"
exit 0
else
echo "File is not of expected size"
exit 1
fi

0 comments on commit 1a741a6

Please sign in to comment.