We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f777c commit d783a30Copy full SHA for d783a30
1 file changed
.github/workflows/testing.yml
@@ -28,6 +28,20 @@ jobs:
28
python-version: "3.12"
29
30
steps:
31
+ - name: Free up disk space
32
+ if: runner.os == 'Linux'
33
+ run: |
34
+ echo "Disk space before cleanup:"
35
+ df -h
36
+ # Remove unnecessary software to free up disk space
37
+ sudo rm -rf /usr/share/dotnet
38
+ sudo rm -rf /usr/local/lib/android
39
+ sudo rm -rf /opt/ghc
40
+ sudo rm -rf /opt/hostedtoolcache/CodeQL
41
+ sudo docker image prune --all --force
42
+ echo "Disk space after cleanup:"
43
44
+
45
- name: Checkout code
46
uses: actions/checkout@v4
47
@@ -39,7 +53,7 @@ jobs:
53
python-version: ${{ matrix.python-version }}
54
55
- name: Install the project
- run: uv sync --all-extras --dev
56
+ run: uv sync --no-cache --all-extras --dev
57
shell: bash
58
59
- name: Install ffmpeg
0 commit comments