Skip to content

Commit 8b255ca

Browse files
authored
Merge pull request #21 from nilium/circleci
Replace TravisCI with CircleCI
2 parents bb5bb88 + a01ae06 commit 8b255ca

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.circleci/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2.1
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/golang:1.11
6+
environment:
7+
GO111MODULE: 'on'
8+
working_directory: /tmp/codf
9+
steps:
10+
- checkout
11+
- run: go build -v .
12+
- run: go test -coverprofile=cover.out -covermode=atomic .
13+
- run: go tool cover -func=cover.out
14+
- run: bash <(curl -s https://codecov.io/bash) -f cover.out

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
codf
22
====
3-
[![Build Status](https://travis-ci.org/nilium/codf.svg?branch=master)](https://travis-ci.org/nilium/codf)
3+
[![CircleCI](https://circleci.com/gh/nilium/codf/tree/master.svg?style=svg)](https://circleci.com/gh/nilium/codf/tree/master)
44
[![codecov](https://codecov.io/gh/nilium/codf/branch/master/graph/badge.svg)](https://codecov.io/gh/nilium/codf)
55
[![Go Report Card](https://goreportcard.com/badge/go.spiff.io/codf)](https://goreportcard.com/report/go.spiff.io/codf)
66
[![GoDoc](https://godoc.org/go.spiff.io/codf?status.svg)](https://godoc.org/go.spiff.io/codf)

0 commit comments

Comments
 (0)