diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 43a4737a9c..2bb8c5d85b 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -14,8 +14,10 @@ jobs: DOCKER_BUILDKIT: 1 IMAGE_TYPE: ${{ matrix.image_type }} steps: - - uses: actions/checkout@v2 + - name: Free up disk space + run: rm -rf /opt/hostedtoolcache + uses: actions/checkout@v3 - - run: ./scripts/cibuild - - - uses: codecov/codecov-action@v2 + - name: Test + run: ./scripts/cibuild + uses: codecov/codecov-action@v3