Skip to content

Commit a5fb4c0

Browse files
committed
Also run test on the main build.
1 parent 36b2d30 commit a5fb4c0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,16 @@ jobs:
4444
4545
- name: Build ImageMagick
4646
run: |
47-
set -e
4847
make
48+
49+
- name: Test ImageMagick
50+
run: |
51+
make check || exit_code=$?
52+
if [ "$exit_code" != "0" ] ; then cat ./test-suite.log ; fi
53+
exit $exit_code
54+
55+
- name: Install ImageMagick
56+
run: |
4957
make install
5058
5159
build_macos:

0 commit comments

Comments
 (0)