We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc65a83 commit 52ba5d8Copy full SHA for 52ba5d8
.github/workflows/workflow.yml
@@ -0,0 +1,23 @@
1
+name: CodeCov
2
+on: [push, pull_request]
3
+jobs:
4
+ run:
5
+ runs-on: ubuntu-latest
6
+ env:
7
+ OS: ubuntu-latest
8
+ PYTHON: '3.9'
9
+ steps:
10
+ - uses: checkout@v2
11
+ with:
12
+ fetch-depth: ‘2’
13
+
14
+ - name: Setup Python
15
+ uses: actions/setup-python@master
16
17
+ python-version: 3.7
18
+ - name: Generate Report
19
+ run: |
20
+ pip install coverage
21
+ coverage run -m unittest
22
+ - name: Upload Coverage to Codecov
23
+ uses: codecov/codecov-action@v2
codecov.yml
@@ -0,0 +1,2 @@
+ignore:
+ - "*/tests/*"
0 commit comments