From 1119d89ba74fe94e1b87f3bceab14ca56ec80382 Mon Sep 17 00:00:00 2001 From: Grigory Efimov Date: Wed, 11 Jan 2023 19:43:52 +0300 Subject: [PATCH] fix .github/workflows/coverage.yml --- .github/workflows/coverage.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4d8753e6..5937fc24 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -17,12 +17,13 @@ jobs: - name: git config run: git config --global url.https://${{ secrets.ANYTYPE_PAT }}@github.com/.insteadOf https://github.com/ - - name: Vet - run: | - make vet - - name: Unit tests - run: | - sudo make test-coverage + - name: deps + run: make deps + - name: vet + run: make vet + - name: unit tests + run: make test-coverage + - name: Quality Gate - Test coverage shall be above threshold env: TESTCOVERAGE_THRESHOLD: 0