We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3326921 commit 6534097Copy full SHA for 6534097
.github/workflows/dev-cicd.yml
@@ -31,6 +31,20 @@ jobs:
31
steps:
32
- name: Check out repo
33
uses: actions/checkout@v4
34
+ - name: Free Disk Space (Ubuntu)
35
+ uses: jlumbroso/free-disk-space@main
36
+ with:
37
+ # this might remove tools that are actually needed,
38
+ # if set to "true" but frees about 6 GB
39
+ tool-cache: false
40
+ # all of these default to true, but feel free to set to
41
+ # "false" if necessary for your workflow
42
+ android: true
43
+ dotnet: true
44
+ haskell: true
45
+ large-packages: true
46
+ docker-images: true
47
+ swap-storage: true
48
- name: Set up Python
49
uses: actions/setup-python@v4
50
with:
0 commit comments