diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index cdc90f6..27dc33a 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -31,7 +31,7 @@ jobs: with: go-version: '1.20' cache: false - - name: Run client tests + - name: Run tests run: go test --cover -coverprofile coverage.out -covermode count -v ./... - name: Coverage check env: @@ -48,22 +48,3 @@ jobs: echo "Failed" exit 1 fi - auto-build: - name: Auto build Examples - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Prepare go environment - uses: actions/setup-go@v4 - with: - go-version: '1.20' - cache: false - - name: Build fetch example - run: | - make build-fetch-example - - name: Build delete example - run: | - make build-delete-example - - name: Build create example - run: | - make build-create-example \ No newline at end of file