diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 01:38:08 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 01:38:08 +0530 |
commit | 26c42dd3cba736938f4ec66cad394154ba1c1a83 (patch) | |
tree | 97adaa2a1e0da228d69c18cf4ec7e80f935932f5 | |
parent | aa019aae4f3c53b0bdd65e60b9dfbd55ce627060 (diff) |
add github action for codecoverage
-rw-r--r-- | .github/workflows/Codecov.yaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.github/workflows/Codecov.yaml b/.github/workflows/Codecov.yaml new file mode 100644 index 0000000..e6549ed --- /dev/null +++ b/.github/workflows/Codecov.yaml @@ -0,0 +1,40 @@ +name: Codecov +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [3.8] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install pipenv + pipenv install --dev + pipenv install pytest-cov + + - name: Generate Coverage Report + run: | + pipenv run pytest --cov=./ --cov-report=xml + - name: Upload Report + uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN}} + flags: unittests + fail_ci_if_error: true + verbose: false
\ No newline at end of file |