chore(tests): add additional test caching

This commit is contained in:
Gabe Kangas
2023-06-13 14:33:17 -07:00
parent 9b44ff107f
commit fd1f3a1952

View File

@@ -18,6 +18,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: go-test-${{ github.sha }}
restore-keys: |
go-test-
- name: Install go
uses: actions/setup-go@v4
with:
@@ -40,6 +49,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: go-test-${{ github.sha }}
restore-keys: |
go-test-
- name: Install go
uses: actions/setup-go@v4
with: