We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605ae3e commit 723676eCopy full SHA for 723676e
.github/workflows/build-and-test.yml
@@ -49,6 +49,13 @@ jobs:
49
run: |
50
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
51
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
52
+ - name: Restore module cache
53
+ uses: actions/cache@v2
54
+ env:
55
+ cache-name: cache-go-modules
56
+ with:
57
+ path: /home/runner/go/pkg/mod
58
+ key: go-pkg-mod-${{ runner.os }}-${{ hashFiles('./go.mod') }}
59
- name: Install tools
60
run: make install-tools
61
- name: Upload tool binaries
0 commit comments