Try to free up a little bit of disk space for GH actions

pull/388/head
Wyatt Stanke 11 months ago
parent 1124ad3271
commit e1cc8d8b99
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -9,6 +9,11 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Free up disk space
run: |
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force
shell: bash
- name: Set up Python ${{ inputs.python-version }} - name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
@ -27,7 +32,7 @@ runs:
key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('**/poetry.lock') }} key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies - name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --all-extras run: poetry install --no-interaction --no-root
shell: bash shell: bash
- name: Activate venv - name: Activate venv
run: | run: |

Loading…
Cancel
Save