Fix build step

This commit is contained in:
Glenn Y. Rolland 2020-02-15 17:58:56 +01:00
parent 379f0679f3
commit c67b65d6f2

View file

@ -1,12 +1,11 @@
---
name: Go name: Go
on: [push] on: [push]
jobs: jobs:
build: build:
name: Build name: Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Set up Go 1.13 - name: Set up Go 1.13
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
@ -19,10 +18,6 @@ jobs:
- name: Get dependencies - name: Get dependencies
run: | run: |
go get -v -t -d ./... go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build - name: Build
run: go build -v . run: make