From 993b8d197810e743a398c0402ec282feab3fb4ff Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 5 Jun 2021 04:24:58 +0200 Subject: [PATCH] Store codecov output as an artifact --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b070b3..99395e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,5 +67,11 @@ jobs: #env_vars: OS,PYTHON name: codecov-python-${{ matrix.python-version }} #fail_ci_if_error: true - path_to_write_report: ./codecov_report.txt + path_to_write_report: ./codecov-report.txt #verbose: true + + - name: Archive code coverage result + uses: 'actions/upload-artifact@v2' + with: + name: code-coverage-${{ matrix.os }}-${{ matrix.python-version }} + path: codecov-report.txt -- 2.39.2