From 44bbaf7d221f4f3ca9d299b71c42801f8c81b8b7 Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Fri, 7 Jul 2023 16:22:27 +0200 Subject: [PATCH] Update build_and_test.yml (#1353) --- .github/workflows/build_and_test.yml | 4 ++++ 1 file changed, 4 insertions(+) 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