From cf926f05f994d87e5c9ea4742ef143f10ac927d8 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Tue, 1 Jul 2025 11:44:56 +0200 Subject: add `make check` target --- .github/workflows/checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 8541806..5e96628 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -42,11 +42,11 @@ jobs: # Test Suite - name: Run tests - run: go test -shuffle=on -coverprofile=cover.out -covermode=count ./... + run: go test -shuffle=on -coverprofile=build/cover.out -covermode=count ./... - name: Upload coverage report to Coveralls env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_BRANCH: ${{ github.head_ref }} run: | go install github.com/mattn/goveralls@latest - goveralls -service=github -coverprofile=cover.out + goveralls -service=github -coverprofile=build/cover.out -- cgit v1.2.3