From 0a98e48bf564d73009670da402f7e193b695316e Mon Sep 17 00:00:00 2001 From: Heungsub Lee Date: Wed, 8 Feb 2023 00:11:22 +0900 Subject: [PATCH] Report test coverage --- .github/workflows/deployment.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index 284bb8c..64b1911 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -19,7 +19,12 @@ jobs: with: {version: v1.50.1} - name: Test - run: go test ./... + run: go test -coverprofile=profile.cov ./... + + - name: Coveralls + uses: shogo82148/actions-goveralls@v1 + with: + path-to-profile: profile.cov test-wasm: runs-on: ubuntu-22.04