Update workflow syntax

This commit is contained in:
mrg 2021-03-01 10:28:47 -08:00
parent 0556b931a9
commit 7355fc91f8
1 changed files with 4 additions and 4 deletions

View File

@ -7,10 +7,10 @@ jobs:
- name: Coverage cleanup - name: Coverage cleanup
run: | run: |
echo "Cleaning up previous run" echo "Cleaning up previous run"
echo ${{ github.workspace }} echo "${{ github.workspace }}"
ls ${{ github.workspace }} ls "${{ github.workspace }}"
echo ${{ github.home }} echo "${{ github.home }}"
ls ${{ github.home }} ls "${{ github.home }}"
rm -rf "${{ github.workspace }}" rm -rf "${{ github.workspace }}"
scn4me_subm: scn4me_subm:
needs: [coverage_cleanup] needs: [coverage_cleanup]