diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6e0bf3..fd629d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,8 @@ jobs: - name: Build shell: bash run: | + go mod init + go mod tidy make build - name: Test shell: bash diff --git a/Makefile b/Makefile index d8b1960..eefce81 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ test: go test -v build: - go install || true + go install deps: go get -u github.com/a-urth/go-bindata/...