From 36c21192d19f3c23ea2c7e7b7ced4c26c18c6719 Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Thu, 16 Mar 2023 13:09:47 +0100 Subject: [PATCH] Run codecov only for go1.19 (#298) --- .github/workflows/pull_request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 92fc46f15..05f0bde2d 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -25,11 +25,12 @@ jobs: - name: build, lint, test run: make build lint test - name: Report coverage + if: ${{ matrix.go == '1.19' }} uses: codecov/codecov-action@v2.1.0 with: files: ./cover.out flags: unittests - fail_ci_if_error: false + fail_ci_if_error: false bundle-check: runs-on: ubuntu-latest