Skip to content

Commit

Permalink
add cleanup disk space and test matrix strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
satish gollaprolu committed Jan 11, 2025
1 parent 9c214af commit 3917470
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 46 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,37 @@ env:
AWS_DEFAULT_REGION: us-west-2

jobs:
test_coverage_python_311:
test_coverage_python:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
env:
PYTHONWARNINGS: ignore
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/[email protected]
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

- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}

- name: Setup Environment
run: |
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/unit_test_coverage_3_12.yml

This file was deleted.

0 comments on commit 3917470

Please sign in to comment.