From 7de817007dd20b60b9757c8168f931ce5368d627 Mon Sep 17 00:00:00 2001 From: mkelcik Date: Fri, 28 Apr 2023 15:22:21 +0200 Subject: [PATCH] Update quality-checks.yml --- .github/workflows/quality-checks.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index c15d968..cdc90f6 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -22,19 +22,17 @@ jobs: with: version: latest tests: - name: Client tests + name: Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Start testing stack - run: docker-compose -f ./docker-compose-ci.yaml up -d - name: Prepare go environment uses: actions/setup-go@v4 with: go-version: '1.20' cache: false - name: Run client tests - run: env TEST_API_HOST=http://localhost:8080 go test --cover -coverprofile coverage.out -covermode count -v ./... + run: go test --cover -coverprofile coverage.out -covermode count -v ./... - name: Coverage check env: TESTCOVERAGE_THRESHOLD: 0