Skip to content

Commit 631674e

Browse files
committed
fix: also exit with non-zero ecxit code in the failure case of the meson check action
1 parent 176ca5d commit 631674e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/meson.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
--exclude='meson_options.txt'
2929
--ignored -c -z | xargs -0r
3030
meson format --check-only -c ./meson.format
31-
|| echo "Not all meson files are formatted correctly"
31+
|| (echo "Not all meson files are formatted correctly" && exit 1)
3232
&& echo "All meson files are formatted correctly"
3333
3434
## TODO: use mesonlint from

0 commit comments

Comments
 (0)