Skip to content

Commit

Permalink
remove GHA runner cached docker images
Browse files Browse the repository at this point in the history
This frees up some space preventing reaching GHA disk space limits.
  • Loading branch information
mayeut committed Sep 18, 2023
1 parent ba11212 commit 0ccf1dc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ jobs:
sudo apt-get update
sudo apt-get -y install podman
# free some space to prevent reaching GHA disk space limits
- name: Clean docker images
if: runner.os == 'Linux'
run: |
docker system prune -a -f
df -h
- name: Install dependencies
run: |
python -m pip install ".[test]"
Expand Down

0 comments on commit 0ccf1dc

Please sign in to comment.