File tree 2 files changed +34
-12
lines changed 2 files changed +34
-12
lines changed Original file line number Diff line number Diff line change
1
+ coverage :
2
+ patch : false
3
+ status :
4
+ project :
5
+ default :
6
+ # basic
7
+ target : auto
8
+ threshold : 0
9
+ base : auto
10
+ # advanced settings
11
+ if_ci_failed : error
12
+ informational : false
13
+ only_pulls : false
Original file line number Diff line number Diff line change 1
- name : workflow for Codecov
2
- on : [push]
1
+ name : 🧪 CI Codecov
2
+ on :
3
+ push :
4
+ branches : [main, dev]
5
+ pull_request :
6
+ branches : [main, dev]
7
+
8
+ permissions :
9
+ contents : read
10
+ pull-requests : write
11
+
3
12
jobs :
4
- run :
13
+ test :
5
14
runs-on : ubuntu-latest
6
- permissions :
7
- contents : read
8
- pull-requests : write
9
-
15
+
10
16
steps :
11
- - uses : actions/checkout@main
12
-
13
- with :
14
- token : ${{ secrets.CODECOV_TOKEN }} # required
15
- verbose : true # optional (default = false)
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+
20
+ # TODO: cross fork PR will not trigger this action
21
+ - name : 🧬 Report coverage
22
+
23
+ env :
24
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments