From d3cf4a1c7c1d2cac30394948108e3f94c44928eb Mon Sep 17 00:00:00 2001 From: Michael Wagner Date: Tue, 30 Apr 2024 20:43:37 +0000 Subject: [PATCH] Add bash commands in different spot --- .github/workflows/R-CMD-check.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 4b59973..72e924c 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -47,17 +47,16 @@ jobs: extra-packages: any::rcmdcheck needs: check - - name: Disk usage before build - run: df -h - - - name: Largest files in the workspace - run: du -ah ${{ github.workspace }} | sort -rh | head -20 - - name: Prepare PTAXSIM database uses: ./.github/actions/prepare-ptaxsim with: ASSUMED_ROLE: ${{ secrets.AWS_IAM_ROLE_TO_ASSUME_ARN }} + - name: Disk usage before build + run: | + df -h + ls -lah + - name: Check R package uses: r-lib/actions/check-r-package@v2 with: