From 67896f6476fe79234b874a506c11f73339eaaffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Wed, 7 Aug 2019 19:25:37 -0700 Subject: [PATCH] readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4eb3bd3..dd0a7e6 100644 --- a/README.md +++ b/README.md @@ -41,16 +41,20 @@ jobs: run: runs-on: ubuntu-latest steps: + - uses: actions/checkout@master + - name: Setup Python uses: actions/setup-python@master with: version: 3.7 + - name: Generate coverage report run: | pip install pytest pip install pytest-cov pytest --cov=./ --cov-report=xml + - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: