Skip to content

Commit

Permalink
Check disk usage between feature powerset workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Apr 13, 2024
1 parent fd83582 commit 0c28c6b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/feature_powerset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,28 @@ jobs:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack

- name: Test
run: cargo hack test --no-fail-fast --feature-powerset --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features
- name: Check disk usage
run: df -h

- name: Clean
run: cargo clean
- name: Check disk usage
run: df -h

- name: Check
run: cargo hack check --feature-powerset --no-dev-deps --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features
- name: Check disk usage
run: df -h

- name: Clean
run: cargo clean
- name: Check disk usage
run: df -h

- name: Clippy
run: cargo hack clippy --all-targets --feature-powerset --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features -- -D warnings
- name: Check disk usage
run: df -h

0 comments on commit 0c28c6b

Please sign in to comment.