@@ -17,11 +17,11 @@ jobs:
17
17
python-version : [3.7, 3.8, 3.9, '3.10', '3.11']
18
18
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
- name : Install poetry
22
22
run : pipx install poetry
23
23
- name : Set up Python ${{ matrix.python-version }}
24
- uses : actions/setup-python@v4
24
+ uses : actions/setup-python@v5
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
cache : ' poetry'
@@ -33,10 +33,12 @@ jobs:
33
33
poetry run pytest --doctest-modules --ignore=examples --cov=pycardano --cov-config=.coveragerc --cov-report=xml
34
34
- name : " Upload coverage to Codecov"
35
35
if : ${{ matrix.python-version == '3.11' }}
36
- uses : codecov/codecov-action@v3
36
+ uses : codecov/codecov-action@v4
37
37
with :
38
38
fail_ci_if_error : true
39
+ token : ${{ secrets.CODECOV_TOKEN }}
39
40
- name : Run static analyses
41
+ if : ${{ matrix.python-version == '3.11' }}
40
42
run : |
41
43
make qa
42
44
@@ -48,11 +50,11 @@ jobs:
48
50
python-version : ['3.11']
49
51
50
52
steps :
51
- - uses : actions/checkout@v3
53
+ - uses : actions/checkout@v4
52
54
- name : Install poetry
53
55
run : pipx install poetry
54
56
- name : Set up Python ${{ matrix.python-version }}
55
- uses : actions/setup-python@v4
57
+ uses : actions/setup-python@v5
56
58
with :
57
59
python-version : ${{ matrix.python-version }}
58
60
cache : ' poetry'
0 commit comments