From 832a8568f4f8aba23c0b464ecec62b21cc40fdef Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 5 Oct 2019 20:32:03 -0400 Subject: [PATCH] update go workflow again I threw the go's dep earlier in the workflow even though installation is already stated. we'll see how this goes --- .github/workflows/go.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3844f8a..b63fbf3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,6 +18,9 @@ jobs: - name: Setup GOPATH run: mkdir -p /home/runner/go/bin + + - name: Install Go's dep dependency manager + run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh - name: Check out code into the Go module directory uses: actions/checkout@v1