File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1+ on : [push, pull_request]
2+ name : Generate coverage report
3+ jobs :
4+ coverage :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - name : Install Go
8+ uses : actions/setup-go@v2
9+ with :
10+ go-version : 1.15.x
11+ - name : Checkout code
12+ uses : actions/checkout@v2
13+ - name : Generate coverage report
14+ run : |
15+ make coverage
16+ - name : Upload coverage to Codecov
17+ uses : codecov/codecov-action@v1
18+ with :
19+ file : ./coverage.txt
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ hdrhistogram-go
44<a href =" https://pkg.go.dev/github.com/HdrHistogram/hdrhistogram-go " ><img src =" https://pkg.go.dev/badge/github.com/HdrHistogram/hdrhistogram-go " alt =" PkgGoDev " ></a >
55[ ![ Gitter] ( https://badges.gitter.im/Join_Chat.svg )] ( https://gitter.im/HdrHistogram/HdrHistogram )
66![ Test] ( https://github.com/HdrHistogram/hdrhistogram-go/workflows/Test/badge.svg?branch=master )
7- [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://github.com/HdrHistogram/hdrhistogram-go/blob/master/LICENSE )
7+ [ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-yellow.svg )] ( https://github.com/HdrHistogram/hdrhistogram-go/blob/master/LICENSE )
8+ [ ![ Codecov] ( https://codecov.io/gh/HdrHistogram/hdrhistogram-go/branch/master/graph/badge.svg )] ( https://codecov.io/gh/HdrHistogram/hdrhistogram-go )
89
910
1011A pure Go implementation of the [ HDR Histogram] ( https://github.com/HdrHistogram/HdrHistogram ) .
You can’t perform that action at this time.
0 commit comments