From f8fa3644b52c00a7f5410590e68786e2962ea222 Mon Sep 17 00:00:00 2001 From: Wei Fu Date: Tue, 3 Jan 2023 14:54:48 +0800 Subject: [PATCH] .github: run coverage in individual job Signed-off-by: Wei Fu --- .github/workflows/tests.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 297da2a..f4b6c69 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -39,6 +39,19 @@ jobs: ;; esac shell: bash - - run: make coverage - name: golangci-lint uses: golangci/golangci-lint-action@0ad9a0988b3973e851ab0a07adf248ec2e100376 # v3.3.1 + + coverage: + needs: ["test"] + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: "1.17.13" + - run: make coverage +