From 605718eb3def5090201b7971953d9087295da6ed Mon Sep 17 00:00:00 2001 From: Mike Coutermarsh Date: Tue, 13 Aug 2019 09:48:18 -0700 Subject: [PATCH] Remove module-path, it is unset. Change "use" -> "uses" --- ci/go.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/go.yml b/ci/go.yml index 00c53eb..31fdda6 100644 --- a/ci/go.yml +++ b/ci/go.yml @@ -15,11 +15,8 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@master - with: - path: ${{ go.module-path }} - name: Get dependencies - working-directory: ${{ go.module-path }} run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then @@ -28,5 +25,4 @@ jobs: fi - name: Build - working-directory: ${{ go.module-path }} run: go build -v .