File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ version: 2.1
22
22
name : " Run coverage on Linux"
23
23
command :
24
24
make cover
25
+ - run :
26
+ name : " Upload coverage to codecov"
27
+ command :
28
+ bash <(curl -s https://codecov.io/bash) -f build/coverage/coverage.txt
25
29
26
30
- store_artifacts :
27
31
path : build/coverage/coverage.html
Original file line number Diff line number Diff line change 4
4
[ ![ CircleCI] ( https://circleci.com/gh/cloudflare/circl/tree/master.svg?style=svg )] ( https://circleci.com/gh/cloudflare/circl/tree/master )
5
5
[ ![ GoDoc] ( https://godoc.org/github.com/cloudflare/circl?status.svg )] ( https://godoc.org/github.com/cloudflare/circl )
6
6
[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/cloudflare/circl )] ( https://goreportcard.com/report/github.com/cloudflare/circl )
7
+ [ ![ codecov] ( https://codecov.io/gh/cloudflare/circl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/cloudflare/circl )
7
8
8
9
** CIRCL** (Cloudflare Interoperable, Reusable Cryptographic Library) is a collection
9
10
of cryptographic primitives written in Go. The goal of this library is to be used as a tool for
Original file line number Diff line number Diff line change
1
+ # Default codecoverage configuration https://docs.codecov.io/docs/codecov-yaml
2
+ codecov :
3
+ require_ci_to_pass : yes
4
+
5
+ coverage :
6
+ precision : 2
7
+ round : down
8
+ range : " 70...100"
9
+
10
+ parsers :
11
+ gcov :
12
+ branch_detection :
13
+ conditional : yes
14
+ loop : yes
15
+ method : no
16
+ macro : no
17
+
18
+ comment :
19
+ layout : " reach,diff,flags,tree"
20
+ behavior : default
21
+ require_changes : no
You can’t perform that action at this time.
0 commit comments