mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-04 15:33:18 +00:00
GitHub Actions: Fix fetch dependencies
This commit is contained in:
parent
84095193e5
commit
2d5b72219f
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Fetch dependencies
|
||||
run: go get .
|
||||
run: go get -d ./...
|
||||
|
||||
- name: Build
|
||||
run: go build
|
||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Fetch dependencies
|
||||
run: go get .
|
||||
run: go get -d ./...
|
||||
|
||||
- name: Build
|
||||
run: go build
|
||||
|
|
Loading…
Reference in a new issue