From 0905ccdbf9f33dfba82fed0cb0c0c7eb4580fb57 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Fri, 10 Feb 2023 15:39:45 -0700 Subject: [PATCH] Upload coverage files to codecov Add a github action task to upload the coverage files to codecov after the unit tests are complete. Signed-off-by: Rich Megginson --- .github/workflows/python-unit-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-unit-test.yml b/.github/workflows/python-unit-test.yml index 1295b2d..163d61a 100644 --- a/.github/workflows/python-unit-test.yml +++ b/.github/workflows/python-unit-test.yml @@ -69,6 +69,10 @@ jobs: *) toxenvs="${toxenvs},coveralls" ;; esac TOXENV="$toxenvs" lsr_ci_runtox + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + python-26: runs-on: ubuntu-latest steps: