Skip to content

Commit 077b1af

Browse files
Add disk space cleanup step to CI workflow
Added a step to free disk space before running checks.
1 parent 1855638 commit 077b1af

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/CI_first_code_checks.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ on:
1010
default: ''
1111

1212
jobs:
13-
1413
first_check:
1514
name: first code check / python-3.13 / ubuntu-latest
1615
runs-on: ubuntu-latest
1716
steps:
17+
- name: Free Disk Space (Ubuntu)
18+
uses: jlumbroso/free-disk-space@main
19+
with:
20+
# this might remove tools that are actually needed,
21+
# when set to "true" but frees about 6 GB
22+
tool-cache: true
1823
- uses: actions/checkout@v4
1924
- name: Set up Python
2025
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)