diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b5b0704..62f3901 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -33,12 +33,9 @@ jobs: - name: Test-386 run: env GOARCH=386 go test -test.run=Test_Retry_sleep -v #run: env GOARCH=386 go test -v -coverprofile='coverage.out' -covermode=count ./... - - - name: Test-Race - run: env GOARCH=amd64 go test -v -race ./... - name: Test-amd64 - run: env GOARCH=amd64 go test -v -coverprofile='coverage.out' -covermode=count ./... + run: env GOARCH=amd64 go test -race -v -coverprofile='coverage.out' -covermode=atomic ./... - name: Upload Coverage report uses: codecov/codecov-action@v3