From 31a75cc1288ea8b4669e07f4594ff6633f88af9b Mon Sep 17 00:00:00 2001 From: Mario Candela Date: Sun, 5 Mar 2023 15:22:21 +0100 Subject: [PATCH] Update ci.yml Signed-off-by: Mario Candela --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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