From a96059634ca80a907d2a5f9d7d4302da0445ed9d Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Thu, 4 Jun 2020 22:09:18 -0400 Subject: [PATCH] feat: add `codecov` to GitHub Actions --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bec58f700..0f2c625a3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -74,6 +74,8 @@ jobs: tox -e py3${{ matrix.python-version }}-test tox -e py3${{ matrix.python-version }}-cov tox -e py3${{ matrix.python-version }}-flake8 + pip install codecov || true + codecov || true - name: Test with tox if: matrix.python-version != '8' run: tox -e py3${{ matrix.python-version }}-test