diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d3f61bc9..4b9553e9 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -35,8 +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 ./... + cd ../_example/memory_store + go test ./... - name: install golangci-lint and goveralls run: |