From ace8be338f50767ce0f61a77f21ec2100ea0b966 Mon Sep 17 00:00:00 2001 From: Holash Chand Date: Fri, 1 Mar 2024 12:11:20 +0530 Subject: [PATCH] running storage check even if build fails --- .github/workflows/maven.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2dd1ff704..221fa8817 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -22,10 +22,8 @@ jobs: cache: 'maven' - name: Set up properties run: sh configure-dependencies.sh - - name: Check Space - run: | - echo "Free space before test:" - df -h + - name: Check free space before test + run: df -h # debug step - name: Setup upterm session uses: lhotari/action-upterm@v1 @@ -34,10 +32,9 @@ jobs: limit-access-to-actor: true - name: Build and test run: make test - - name: Check Space - run: | - echo "Free space after test:" - df -h + - name: Check free space after test + continue-on-error: true + run: df -h # test: # runs-on: ubuntu-latest # steps: