aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/checks.yaml
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2025-07-01 11:44:56 +0200
committerStefan Majewsky <majewsky@gmx.net>2025-07-01 11:44:56 +0200
commitcf926f05f994d87e5c9ea4742ef143f10ac927d8 (patch)
tree22bc5f518458db8976bb99d53084cbe878cdd733 /.github/workflows/checks.yaml
parent4bdb5fd20340f5f734f1dea9480a00a2954bfe3a (diff)
downloadgo-gg-cf926f05f994d87e5c9ea4742ef143f10ac927d8.tar.gz
add `make check` target
Diffstat (limited to '.github/workflows/checks.yaml')
-rw-r--r--.github/workflows/checks.yaml4
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