From 3c36db928528685cdca5f7f44a2cb0060158e973 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Tue, 14 Apr 2020 09:22:38 +1000 Subject: [PATCH] Split github actions pipeline --- .github/workflows/go.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e89e934..d670f44 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -24,7 +24,9 @@ jobs: dep ensure fi - - name: Download deps - run: scripts/devtools.sh + - name: Download golangci-lint + run: wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.24.0 + - name: Download goimports + run: go get golang.org/x/tools/cmd/goimports - name: Build run: make local build \ No newline at end of file