Skip to content

Commit

Permalink
chore: fixes for code climate reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcobrotas-prowarehouse committed Oct 16, 2024
1 parent 749af25 commit 47b1ee9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...
run: go test -race -v -coverprofile=c.out ./...
- name: Setup Code Climate test-reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Expand All @@ -35,6 +35,4 @@ jobs:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
./cc-test-reporter before-build
GO111MODULE=off go get .
GO111MODULE=off go test -race -coverprofile=c.out ./...
./cc-test-reporter after-build --exit-code $?

0 comments on commit 47b1ee9

Please sign in to comment.