From e376b9c79363eef9d41b2c420636be37e09a6b83 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Mon, 29 Nov 2021 15:04:58 -0500 Subject: [PATCH] build: run codecov after as part of CI --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5802fe..bceb9e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,3 +30,10 @@ jobs: - name: Run Tests run: tox + + - name: Run Coverage + if: matrix.python-version == '3.8' + uses: codecov/codecov-action@v1 + with: + flags: unittests + fail_ci_if_error: true