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 .