diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aac369b..3474f1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,15 +28,15 @@ jobs: - name: Build run: go build -v ./... - - name: Integration tests - run: | - INTEGRATION=1 go test ./... -v - - name: Unit tests run: | go test ./... -v -coverprofile coverage.tmp.out -covermode count go tool cover -func coverage.tmp.out + - name: Integration tests + run: | + INTEGRATION=1 go test ./... -v + - name: Quality Gate - Test coverage shall be above threshold env: TESTCOVERAGE_THRESHOLD: 70