From 4eeae0ee23881f03c2c5371fe509cf94c19e92d5 Mon Sep 17 00:00:00 2001 From: Venkat Malladi Date: Fri, 26 Apr 2024 05:27:42 -0500 Subject: [PATCH] Update integration.yml --- .github/workflows/integration.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f33d4b1..d11a6ad 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -33,9 +33,10 @@ jobs: --symlink tests/ --basetemp ~/temp - name: Check miniwdl log in case of failure. if: ${{ failure() }} - run: ls -ltra /home/runner/temp/* - # Get the last 1000 lines of the miniwdl log to catch the error. - run: bash -c 'tail -n 1000 /home/runner/temp/*/task.out' + run: | + ls -ltra /home/runner/temp/* + # Get the last 1000 lines of the miniwdl log to catch the error. + bash -c 'tail -n 1000 /home/runner/temp/*/task.out' - name: Check job stderr messages in case of failure if: ${{ failure() }} run: >-