When tests fail, show also error.log as it may have meaningful content

This commit is contained in:
Badlop 2021-10-15 14:49:30 +02:00
parent d3aa329769
commit c2db003431
1 changed files with 4 additions and 0 deletions

View File

@ -160,6 +160,10 @@ jobs:
if: failure()
run: find logs/ -name ejabberd.log -exec cat '{}' ';'
- name: View error.log
if: failure()
run: find logs/ -name error.log -exec cat '{}' ';'
- name: View exunit.log
if: failure()
run: find logs/ -name exunit.log -exec cat '{}' ';'