Skip to content
This repository was archived by the owner on Jun 14, 2019. It is now read-only.

Commit 9d86bc6

Browse files
authored
Merge pull request #12 from go-xorm/lunny/add_ci
Add ci and improve README
2 parents 5508365 + 11d049f commit 9d86bc6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SQL builder
22

3-
[![CircleCI](https://circleci.com/gh/go-xorm/builder/tree/master.svg?style=svg)](https://circleci.com/gh/go-xorm/builder/tree/master)
3+
[![CircleCI](https://circleci.com/gh/go-xorm/builder/tree/master.svg?style=svg)](https://circleci.com/gh/go-xorm/builder/tree/master) [![codecov](https://codecov.io/gh/go-xorm/builder/branch/master/graph/badge.svg)](https://codecov.io/gh/go-xorm/builder)
4+
[![](https://goreportcard.com/badge/github.com/go-xorm/builder)](https://goreportcard.com/report/github.com/go-xorm/builder)
45

56
Package builder is a lightweight and fast SQL builder for Go and XORM.
67

circle.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ test:
99
override:
1010
# './...' is a relative pattern which means all subdirectories
1111
- golint ./...
12-
- go test -v -race
12+
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
13+
post:
14+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)