From 1a741a693df971fb2ede05260c37db071529c43e Mon Sep 17 00:00:00 2001 From: Mathieu Westphal Date: Wed, 4 Sep 2024 21:29:26 +0200 Subject: [PATCH] check --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0f0f5c..19ba113 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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