diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2025-07-01 11:44:56 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2025-07-01 11:44:56 +0200 |
| commit | cf926f05f994d87e5c9ea4742ef143f10ac927d8 (patch) | |
| tree | 22bc5f518458db8976bb99d53084cbe878cdd733 /.github | |
| parent | 4bdb5fd20340f5f734f1dea9480a00a2954bfe3a (diff) | |
| download | go-gg-cf926f05f994d87e5c9ea4742ef143f10ac927d8.tar.gz | |
add `make check` target
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/checks.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
