File tree 2 files changed +24
-6
lines changed
2 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 62
62
run : |
63
63
ctest --preset=gcc_dev_all --parallel 2
64
64
65
- - name : Coveralls
66
- working-directory : ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_ALL}}
67
- run : |
68
- cmake --build . --target lcov_coverage
69
- bash <(curl -s https://codecov.io/bash) -f coverage_truncated.info || echo "Codecov did not collect coverage reports"
70
-
71
65
- name : Install
72
66
working-directory : ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_ALL}}
73
67
run : |
@@ -150,6 +144,13 @@ jobs:
150
144
run : |
151
145
ctest --preset=gcc_dev_single --parallel 2
152
146
147
+ - name : Coveralls
148
+ working-directory : ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_SINGLE}}
149
+ run : |
150
+ cmake --build . --target lcov_coverage
151
+ cat ../codecov.yml | curl --data-binary @- https://codecov.io/validate
152
+ bash <(curl -s https://codecov.io/bash) -f coverage_truncated.info || echo "Codecov did not collect coverage reports"
153
+
153
154
- name : Install
154
155
working-directory : ${{github.workspace}}/${{env.BUILD_FOLDER_DEV_SINGLE}}
155
156
run : |
Original file line number Diff line number Diff line change
1
+ codecov :
2
+ require_ci_to_pass : yes
3
+ notify :
4
+ wait_for_ci : yes
5
+
6
+ coverage :
7
+ precision : 2
8
+ round : nearest
9
+ range : " 60...100"
10
+
11
+ parsers :
12
+ gcov :
13
+ branch_detection :
14
+ conditional : yes
15
+ loop : yes
16
+ method : yes
17
+ macro : yes
You can’t perform that action at this time.
0 commit comments