Update build_and_test.yml (#1353)

This commit is contained in:
Dongjia "toka" Zhang 2023-07-07 16:22:27 +02:00 committed by GitHub
parent 8cca87f2bd
commit 44bbaf7d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,6 +173,10 @@ jobs:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: 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 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal