File tree 4 files changed +41
-27
lines changed
4 files changed +41
-27
lines changed Original file line number Diff line number Diff line change 1
1
comment : false
2
2
3
3
github_checks :
4
- annotations : false
4
+ annotations : false
5
+
6
+ coverage :
7
+ status :
8
+ project :
9
+ default : false
10
+ operator :
11
+ paths :
12
+ - " !tests/"
13
+ - " !tools/"
14
+ tests :
15
+ paths : " test/"
16
+ tools :
17
+ paths : " tools/"
18
+
19
+ component_management :
20
+ default_rules : # default rules that will be inherited by all components
21
+ statuses :
22
+ - type : project
23
+ target : auto
24
+ informational : true
25
+ individual_components :
26
+ - component_id : operator
27
+ name : operator
28
+ paths :
29
+ - " !tests/"
30
+ - " !tools/"
31
+ - component_id : test-helpers
32
+ name : test-helpers
33
+ paths :
34
+ - test/**
35
+ - component_id : tools
36
+ name : tools
37
+ paths :
38
+ - tools/**
39
+ statuses :
40
+ - type : project
41
+ target : auto
42
+ threshold : 5
43
+ informational : true
44
+ - type : patch
Original file line number Diff line number Diff line change 46
46
with :
47
47
name : logs
48
48
path : output/**
49
- - name : Upload test results to codecov.io
50
- if : ${{ success() }}
51
- uses : codecov/codecov-action@v5
52
- with :
53
- name : ${{ matrix.test }}
54
- token : ${{ secrets.CODECOV_TOKEN }}
55
- files : test/e2e/coverprofile.out
56
- verbose : true
Original file line number Diff line number Diff line change @@ -276,12 +276,3 @@ jobs:
276
276
with :
277
277
name : logs
278
278
path : output/**
279
- - name : Upload test results to codecov.io
280
- if : ${{ success() }}
281
- uses : codecov/codecov-action@v5
282
- with :
283
- name : e2e-${{ matrix.test }}
284
- flags : e2e,${{ matrix.test }}
285
- token : ${{ secrets.CODECOV_TOKEN }}
286
- files : test/e2e/coverprofile.out
287
- verbose : true
Original file line number Diff line number Diff line change 53
53
GINKGO_EDITOR_INTEGRATION : " true"
54
54
run : |
55
55
devbox run -- 'make ${{ matrix.target }}'
56
- - name : Upload coverage to Codecov
57
- uses : codecov/codecov-action@v5
58
- with :
59
- name : int-${{ matrix.test }}
60
- flags : integration,${{ matrix.test }}
61
- token : ${{ secrets.CODECOV_TOKEN }}
62
- files : coverprofile.out
63
- verbose : true
64
-
You can’t perform that action at this time.
0 commit comments