From 323249351482b3bbfc9f5004f65d400aa70f9ae7 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Wed, 12 Apr 2023 13:02:03 -0400 Subject: [PATCH] Only run tests once Tests are being run twice in CI. Once with code coverage being report and once without. Tests only need to be run once. When Helm previously had testing in CircleCI it was the code coverage tests so that was retained here. Signed-off-by: Matt Farina --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 74d66a6ef..6d0966e98 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -33,4 +33,4 @@ jobs: - name: Run unit tests run: make test-coverage - name: Test build - run: make test build + run: make build