From f21e566f9cd2a232948b820b5dc9875c95ef60cb Mon Sep 17 00:00:00 2001 From: Jackie Li Date: Tue, 30 Jan 2024 15:56:14 +0000 Subject: [PATCH] use env --- .github/workflows/test-env.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/test-env.yaml b/.github/workflows/test-env.yaml index 52b7994..f545de2 100644 --- a/.github/workflows/test-env.yaml +++ b/.github/workflows/test-env.yaml @@ -77,31 +77,3 @@ jobs: - name: Verify cache files outside working directory shell: bash run: src/verify-cache-files.sh ${{ runner.os }} ~/test-cache - - test-restore-keys: - needs: test-save - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] - fail-fast: false - runs-on: ${{ matrix.os }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Restore cache - uses: ./ - with: - endpoint: play.min.io - bucket: actions-cache - use-fallback: false - key: test-${{ runner.os }}-${{ github.run_id }}-${{ github.sha }} - path: | - test-cache - ~/test-cache - restore-keys: test-${{ runner.os }}- - - name: Verify cache files in working directory - shell: bash - run: src/verify-cache-files.sh ${{ runner.os }} test-cache - - name: Verify cache files outside working directory - shell: bash - run: src/verify-cache-files.sh ${{ runner.os }} ~/test-cache