.github: remove golang from build_image job
We're building inside Docker container, so we don't need golang to be installed on the host machine.
This commit is contained in:
parent
7770535d4f
commit
f97f6168fc
1 changed files with 0 additions and 14 deletions
14
.github/workflows/run_tests.yml
vendored
14
.github/workflows/run_tests.yml
vendored
|
@ -191,19 +191,5 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.17
|
||||
|
||||
- name: Restore Go modules from cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /home/runner/go/pkg/mod
|
||||
key: deps-${{ hashFiles('go.sum') }}
|
||||
|
||||
- name: Update Go modules
|
||||
run: go mod download -json
|
||||
|
||||
- name: Build Docker image
|
||||
run: make image
|
||||
|
|
Loading…
Reference in a new issue