From 26c42dd3cba736938f4ec66cad394154ba1c1a83 Mon Sep 17 00:00:00 2001
From: Navan Chauhan <navanchauhan@gmail.com>
Date: Fri, 4 Jun 2021 01:38:08 +0530
Subject: add github action for codecoverage

---
 .github/workflows/Codecov.yaml | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 .github/workflows/Codecov.yaml

(limited to '.github/workflows')

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
-- 
cgit v1.2.3