Skip to content

Commit

Permalink
Add action to free space during codecov stage. (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoolioh authored Jul 11, 2024
1 parent ea37c78 commit 54708da
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ jobs:
env:
CARGO_TERM_COLOR: always
steps:
- name: Free Disk Space
uses: jlumbroso/free-disk-space@v1.3.1
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- uses: actions/checkout@v4
- name: Install Rust
run: rustup install nightly && rustup default nightly
Expand All @@ -24,6 +34,7 @@ jobs:
cargo llvm-cov --all-features --workspace --no-report nextest
cargo llvm-cov --all-features --workspace --no-report --doc
cargo llvm-cov report --doctests --lcov --output-path lcov.info
cargo clean
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 54708da

Please sign in to comment.