From 73c17ef4d25bf2e4cd072ccb965d928fdc60ae9e Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 30 May 2023 00:12:22 +0200 Subject: [PATCH] ci: send test reports to codecov Signed-off-by: CrazyMax --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa1769ac..200b6a87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,6 +72,12 @@ jobs: TESTFLAGS: "${{ (matrix.worker == 'docker' || matrix.worker == 'docker-container') && env.TESTFLAGS_DOCKER || env.TESTFLAGS }} --run=//worker=${{ matrix.worker }}$" TESTPKGS: "${{ matrix.pkg }}" SKIP_INTEGRATION_TESTS: "${{ matrix.skip-integration-tests }}" + - + name: Send to Codecov + if: always() + uses: codecov/codecov-action@v3 + with: + directory: ./bin/testreports - name: Generate annotations if: always()