fix .github/workflows/coverage.yml

This commit is contained in:
Grigory Efimov 2023-01-11 19:43:52 +03:00 committed by Grigory Efimov
parent ca1ebaaf14
commit 0fb8ec2b7c

View File

@ -17,12 +17,13 @@ jobs:
- name: git config - name: git config
run: git config --global url.https://${{ secrets.ANYTYPE_PAT }}@github.com/.insteadOf https://github.com/ run: git config --global url.https://${{ secrets.ANYTYPE_PAT }}@github.com/.insteadOf https://github.com/
- name: Vet - name: deps
run: | run: make deps
make vet - name: vet
- name: Unit tests run: make vet
run: | - name: unit tests
sudo make test-coverage run: make test-coverage
- name: Quality Gate - Test coverage shall be above threshold - name: Quality Gate - Test coverage shall be above threshold
env: env:
TESTCOVERAGE_THRESHOLD: 0 TESTCOVERAGE_THRESHOLD: 0