- name: Build CUPS
run: make
- name: Test CUPS
- run: make test || cat test/error_log*
+ run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*)
build-linux-i386:
- name: Build CUPS
run: make
- name: Test CUPS
- run: make test || cat test/error_log*
+ run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*)
build-macos:
- name: Build CUPS
run: make
- name: Test CUPS
- run: make test || cat test/error_log*
+ run: make test || (cat cups/test.log; test -f test/error_log && cat test/error_log*)
build-windows: