Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,20 @@ jobs:
python-version: "3.12"

steps:
- name: Free up disk space
if: runner.os == 'Linux'
run: |
echo "Disk space before cleanup:"
df -h
# Remove unnecessary software to free up disk space
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force
echo "Disk space after cleanup:"
df -h

- name: Checkout code
uses: actions/checkout@v4

Expand All @@ -39,7 +53,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install the project
run: uv sync --all-extras --dev
run: uv sync --no-cache --all-extras --dev
shell: bash

- name: Install ffmpeg
Expand Down