From 3525b2140306763329b0c0ed74e7c3305e9fe12c Mon Sep 17 00:00:00 2001 From: Ted Chambers Date: Tue, 11 Aug 2020 12:02:12 -0400 Subject: [PATCH] test removal of dependency step, to see if it downloads on the fly --- .github/workflows/go.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e0ac2de0..d4618863 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,14 +18,6 @@ jobs: go-version: ${{ matrix.go }} id: go - - name: Get dependencies - run: | - 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: go build run: go build -v ./...