Skip to content

Commit

Permalink
running storage check even if build fails
Browse files Browse the repository at this point in the history
  • Loading branch information
holashchand committed Mar 1, 2024
1 parent 237f63f commit ace8be3
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit ace8be3

Please sign in to comment.