Skip to content

Commit

Permalink
feat: show free disk space in CI
Browse files Browse the repository at this point in the history
helps with #1138
  • Loading branch information
bonomat committed Aug 22, 2023
1 parent d035732 commit 19dda11
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,13 @@ jobs:
run: |
docker-compose up -d
sleep 10 # We need to give docker a bit of time to startup
- name: show disk space before tests
run: df -h
- name: Test containers are up
run: |
curl -d '{"address":"bcrt1qylgu6ffkp3p0m8tw8kp4tt2dmdh755f4r5dq7s", "amount":"0.1"}' -H "Content-Type: application/json" -X POST http://localhost:3000/faucet
- name: Run e2e tests
run: just e2e --nocapture
- name: show disk space after tests
if: always()
run: df -h

0 comments on commit 19dda11

Please sign in to comment.