File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 34
34
run : docker push registry.agdsn.de/agdsn/coreos/sipa/sipa:${GITHUB_REF##*/}
35
35
test :
36
36
runs-on : ubuntu-latest
37
+ permissions :
38
+ id-token : write
37
39
steps :
38
40
- name : Check out sipa and submodules
39
41
uses : actions/checkout@v3
58
60
run : >
59
61
pytest
60
62
--junitxml=junit/test-results.xml
63
+ --cov --cov-report=xml:cov/cov-results.xml
61
64
- name : Publish Test Report
62
65
uses : mikepenz/action-junit-report@v3
63
66
if : always() # always run even if the previous step fails
64
67
with :
65
68
report_paths : ' junit/test-*.xml'
69
+ annotate_only : true
70
+ - name : Upload results to Codecov
71
+ uses : codecov/codecov-action@v5
72
+ with :
73
+ disable_search : true
74
+ files : ./cov/cov-results.xml
75
+ use_oidc : true
76
+ verbose : true
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ pycodestyle~=2.4.0
5
5
mypy~=0.960
6
6
sphinx~=1.8.4
7
7
pytest~=7.4.3
8
+ pytest-cov~=2.10.1
8
9
time_machine~=2.13.0
You can’t perform that action at this time.
0 commit comments