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 b324920 commit 03e0336Copy full SHA for 03e0336
.github/workflows/python-app.yml
@@ -1,4 +1,4 @@
1
-name: CodeCov
+name: Build Test Coverage
2
on: [push, pull_request]
3
jobs:
4
run:
@@ -7,17 +7,15 @@ jobs:
7
OS: ubuntu-latest
8
PYTHON: '3.6.8'
9
steps:
10
- - uses: checkout@v2
11
- with:
12
- fetch-depth: ‘2’
13
-
+ - name: Checkout
+ uses: actions/checkout@v2.3.4
14
- name: Setup Python
15
- uses: actions/setup-python@master
+ uses: actions/setup-python@v2.2.2
16
with:
17
python-version: 3.6.8
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@v1
+ - name: Codecov
+ uses: codecov/codecov-action@v1.5.2
0 commit comments