From ae40fbeaf4c5c2c2315bb2c15a6b39e4e3122a64 Mon Sep 17 00:00:00 2001 From: Umputun Date: Mon, 11 Nov 2019 18:52:13 -0600 Subject: [PATCH] add example test --- .github/workflows/ci-build.yml | 2 ++ 1 file changed, 2 insertions(+) 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: |