We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ff91c commit 851a0dcCopy full SHA for 851a0dc
.github/workflows/build_and_test.yml
@@ -38,6 +38,10 @@ jobs:
38
- name: Install dependencies
39
run: |
40
python -m pip install --upgrade pip
41
+ # Clean up apt cache to save space
42
+ apt-get clean
43
+ rm -rf /var/lib/apt/lists/*
44
+ df -h
45
# Install python dependencies (with coverage enabled)
46
echo -e "\n##### Running pip install #####"
47
pip install -e '.[dev]' --config-settings=cmake.args="-DENABLE_COVERAGE=ON"
0 commit comments