Skip to content

Commit 811ec01

Browse files
committed
change github action setup python version
1 parent a620852 commit 811ec01

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/unittests_codecov.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
python-version: [3.5, 3.6, 3.7]
1919
steps:
2020
- uses: actions/checkout@master
21-
- name: Setup Python
22-
uses: actions/setup-python@master
21+
- name: Setup Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v1
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Static code checking with pyflakes
@@ -31,7 +31,6 @@ jobs:
3131
pip install -r tests/test_requirements.txt
3232
pip install -e .
3333
pytest --cov=mkdocs_git_authors_plugin --cov-report=xml
34-
coverage combine
3534
- name: Upload coverage to Codecov
3635
uses: codecov/codecov-action@v1
3736
with:

0 commit comments

Comments
 (0)