Skip to content

Commit

Permalink
Potential fix to memory issue for GitHub Runners
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielChaseButterfield committed Apr 9, 2024
1 parent 48281b9 commit 7b6356e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/python_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,21 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
Expand Down

0 comments on commit 7b6356e

Please sign in to comment.