diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 3d87ae13fa..cafcfe9890 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -173,6 +173,10 @@ jobs: os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: + - name: Delete Dotnet + run: find / -name "dotnet" -type d -exec rm -rf {} \; + - name: Delete Haskell + run: find / -name "ghc" -type d -exec rm -rf {} \; - uses: actions-rs/toolchain@v1 with: profile: minimal