diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 41870ae..ee71579 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v2 - name: Get dependencies run: | - go get -v -t -d ./... + go get -v -t -d . - name: Run Tests with Race checks run: go test -v -timeout 300s -race ./... - name: Run Benchmarks @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v2 - name: Get dependencies run: | - go get -v -t -d ./... + go get -v -t -d . - name: Run Tests run: go test -v -timeout 300s -covermode atomic -coverprofile=covprofile ./... - name: Install goveralls