mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
Merge pull request #1780 from nspcc-dev/ci-cache-fix
github: fix go mod cache
This commit is contained in:
commit
d33291c377
1 changed files with 4 additions and 4 deletions
8
.github/workflows/publish_to_dockerhub.yml
vendored
8
.github/workflows/publish_to_dockerhub.yml
vendored
|
@ -62,11 +62,11 @@ jobs:
|
||||||
- name: Restore go modules from cache
|
- name: Restore go modules from cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /go/pkg/mod
|
path: /home/runner/go/pkg/mod
|
||||||
key: deps-${{ hashFiles('go.sum') }}
|
key: deps-${{ hashFiles('go.sum') }}
|
||||||
|
|
||||||
- name: Update Go modules
|
- name: Update Go modules
|
||||||
run: go mod download
|
run: go mod download -json
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test
|
run: make test
|
||||||
|
@ -99,11 +99,11 @@ jobs:
|
||||||
- name: Restore go modules from cache
|
- name: Restore go modules from cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /go/pkg/mod
|
path: /home/runner/go/pkg/mod
|
||||||
key: deps-${{ hashFiles('go.sum') }}
|
key: deps-${{ hashFiles('go.sum') }}
|
||||||
|
|
||||||
- name: Update Go modules
|
- name: Update Go modules
|
||||||
run: go mod download
|
run: go mod download -json
|
||||||
|
|
||||||
- name: Build image
|
- name: Build image
|
||||||
run: make image
|
run: make image
|
||||||
|
|
Loading…
Reference in a new issue