10
10
os : [ubuntu-latest, macos-latest, windows-latest]
11
11
python-version : ['3.7', '3.8', '3.9', '3.10']
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
- name : Set up Python ${{ matrix.python-version }}
15
- uses : actions/setup-python@v2
15
+ uses : actions/setup-python@v4
16
16
with :
17
17
python-version : ${{ matrix.python-version }}
18
18
- name : Install dependencies
@@ -24,17 +24,20 @@ jobs:
24
24
run : |
25
25
pytest --cov=./ --cov-report=xml
26
26
- name : Upload coverage to Codecov
27
- uses : codecov/codecov-action@v1
27
+ uses : codecov/codecov-action@v3
28
28
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
32
35
codestyle_type_and_doc :
33
36
runs-on : ubuntu-latest
34
37
steps :
35
- - uses : actions/checkout@v2
38
+ - uses : actions/checkout@v3
36
39
- name : Set up Python 3.8
37
- uses : actions/setup-python@v2
40
+ uses : actions/setup-python@v4
38
41
with :
39
42
python-version : 3.8
40
43
- name : Install dependencies
0 commit comments