diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba7cdc47..332a39e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: env_vars: OS - name: Report coverage to CodeClimate uses: paambaati/codeclimate-action@v3.0.0 + continue-on-error: true env: CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} with: @@ -53,6 +54,7 @@ jobs: ${{github.workspace}}/coverage.out:gocov - name: Report coverage to Codacy uses: codacy/codacy-coverage-reporter-action@v1 + continue-on-error: true with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} coverage-reports: coverage.out diff --git a/Makefile b/Makefile index 2fe5fb71..eab92162 100644 --- a/Makefile +++ b/Makefile @@ -22,13 +22,13 @@ ${BIN}/${BINARY_NAME}: .PHONY: test test: - ${GO_TEST} ./... + ${GO_TEST} -race ./... .PHONY: cover cover: ${COVER_OUT} ${COVER_OUT}: - ${GO_TEST} -cover -coverprofile ${COVER_OUT} ./... + ${GO_TEST} -race -cover -coverprofile ${COVER_OUT} ./... .PHONY: lint lint: