diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9f3cc93..8307aaa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,12 +14,12 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Test run: | go mod tidy -v - go test -race ./... + go test -mod=vendor -race ./... - name: Build - run: go build ./... + run: go build -mod=vendor ./...