Skip to content

Commit 06ea231

Browse files
committed
Merge branch 'develop'
2 parents d63999a + aa1f516 commit 06ea231

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,19 @@ go:
1212
- 1.6
1313
- tip
1414

15+
before_install:
16+
- go get github.com/onsi/gomega
17+
- go get github.com/onsi/ginkgo
18+
- go get golang.org/x/tools/cmd/cover
19+
1520
install:
1621
- go get -v .
1722

1823
script:
19-
- go test -v .
24+
- go test -v ./... -coverprofile=coverage.txt -covermode=atomic
25+
26+
after_success:
27+
- bash <(curl -s https://codecov.io/bash)
2028

2129
matrix:
2230
allow_failures:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# log - aah framework
2-
[![Build Status](https://travis-ci.org/go-aah/log.svg?branch=master)](https://travis-ci.org/go-aah/log) [![Go Report Card](https://goreportcard.com/badge/github.com/go-aah/log)](https://goreportcard.com/report/github.com/go-aah/log) [![GoDoc](https://godoc.org/github.com/go-aah/log?status.svg)](https://godoc.org/github.com/go-aah/log) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
2+
[![Build Status](https://travis-ci.org/go-aah/log.svg?branch=master)](https://travis-ci.org/go-aah/log) [![codecov](https://codecov.io/gh/go-aah/log/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/log) [![Go Report Card](https://goreportcard.com/badge/github.com/go-aah/log)](https://goreportcard.com/report/github.com/go-aah/log) [![GoDoc](https://godoc.org/github.com/go-aah/log?status.svg)](https://godoc.org/github.com/go-aah/log) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
33

4-
Simple, flexible & powerful `Go` logger. aah framework utilizes `log` library across.
4+
Simple, flexible & powerful `Go` logger inspired by standard logger & Google glog. aah framework utilizes `log` library across.
55

66
*It's independent library, can be used separately with any `Go` language project. Feel free to use it.*
77

0 commit comments

Comments
 (0)