Skip to content

Commit

Permalink
try not caching
Browse files Browse the repository at this point in the history
  • Loading branch information
timwu20 committed Jul 18, 2023
1 parent 3fbb115 commit 22d4b99
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
- uses: actions/checkout@v3

- name: Go build cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-build
# - name: Go build cache
# uses: actions/cache@v3
# with:
# path: ${{ steps.go-cache-paths.outputs.go-build }}
# key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
# restore-keys: ${{ runner.os }}-go-build

- name: Go modules cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-mod
# - name: Go modules cache
# uses: actions/cache@v3
# with:
# path: ${{ steps.go-cache-paths.outputs.go-mod }}
# key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
# restore-keys: ${{ runner.os }}-go-mod

- name: Install Subkey
run: |
Expand Down

0 comments on commit 22d4b99

Please sign in to comment.