Skip to content

Commit eea437f

Browse files
authored
Upgrade github-actions (#45)
* upgrade to codecov-v3 * Upgrade setup-python and checkout to their v3 * setup-python@v4
1 parent 09ecfb6 commit eea437f

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/build.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
1111
python-version: ['3.7', '3.8', '3.9', '3.10']
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install dependencies
@@ -24,17 +24,20 @@ jobs:
2424
run: |
2525
pytest --cov=./ --cov-report=xml
2626
- name: Upload coverage to Codecov
27-
uses: codecov/codecov-action@v1
27+
uses: codecov/codecov-action@v3
2828
with:
29-
name: codecov-umbrella # optional
30-
fail_ci_if_error: true # optional (default = false)
31-
verbose: true # optional (default = false)
29+
directory: ./coverage/reports/
30+
env_vars: ${{ matrix.os }}, ${{ matrix.python-version }}
31+
fail_ci_if_error: true
32+
files: ./coverage.xml
33+
name: codecov-umbrella
34+
verbose: true
3235
codestyle_type_and_doc:
3336
runs-on: ubuntu-latest
3437
steps:
35-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3639
- name: Set up Python 3.8
37-
uses: actions/setup-python@v2
40+
uses: actions/setup-python@v4
3841
with:
3942
python-version: 3.8
4043
- name: Install dependencies

0 commit comments

Comments
 (0)