diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 50e04c28..d3f61bc9 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -35,6 +35,8 @@ jobs: cd backend/app go test -mod=vendor -timeout=60s -covermode=count -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp ./... cat $GITHUB_WORKSPACE/profile.cov_tmp | grep -v "_mock.go" > $GITHUB_WORKSPACE/profile.cov + cd ../_example + go test -timeout=60s ./... - name: install golangci-lint and goveralls run: |