Skip to content

Commit 03e0336

Browse files
authored
Update workflow to contain proper versions
1 parent b324920 commit 03e0336

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/python-app.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CodeCov
1+
name: Build Test Coverage
22
on: [push, pull_request]
33
jobs:
44
run:
@@ -7,17 +7,15 @@ jobs:
77
OS: ubuntu-latest
88
PYTHON: '3.6.8'
99
steps:
10-
- uses: checkout@v2
11-
with:
12-
fetch-depth: ‘2’
13-
10+
- name: Checkout
11+
uses: actions/checkout@v2.3.4
1412
- name: Setup Python
15-
uses: actions/setup-python@master
13+
uses: actions/setup-python@v2.2.2
1614
with:
1715
python-version: 3.6.8
1816
- name: Generate Report
1917
run: |
2018
pip install coverage
2119
coverage run -m unittest
22-
- name: Upload Coverage to Codecov
23-
uses: codecov/codecov-action@v1
20+
- name: Codecov
21+
uses: codecov/codecov-action@v1.5.2

0 commit comments

Comments
 (0)