Skip to content

Commit

Permalink
Adding disk cleanup to coverage action
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Oct 5, 2023
1 parent 0992510 commit a17920e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
- name: Install Rust
uses: hecrj/setup-rust-action@v1

-
name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) || true
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc || true
- name: Run code coverage
run: |
cargo xtask generate-code-coverage-report --install-dependencies
Expand Down

0 comments on commit a17920e

Please sign in to comment.