Skip to content

Commit 3521eda

Browse files
committed
chore: add jlumbroso/free-disk-space
1 parent c0513f1 commit 3521eda

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/phpunit.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,25 @@ jobs:
9898
- name: Check disk space
9999
run: df -h
100100

101+
- name: Free Disk Space (Ubuntu)
102+
uses: jlumbroso/free-disk-space@main
103+
with:
104+
# this might remove tools that are actually needed,
105+
# if set to "true" but frees about 6 GB
106+
tool-cache: false
107+
108+
# all of these default to true, but feel free to set to
109+
# "false" if necessary for your workflow
110+
android: true
111+
dotnet: true
112+
haskell: true
113+
large-packages: true
114+
docker-images: true
115+
swap-storage: true
116+
117+
- name: Check disk space
118+
run: df -h
119+
101120
- name: Create database for MSSQL Server
102121
if: matrix.db-platforms == 'SQLSRV'
103122
run: sqlcmd -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"

0 commit comments

Comments
 (0)