Skip to content
Snippets Groups Projects
Unverified Commit 0046cb75 authored by takt's avatar takt Committed by GitHub
Browse files

Merge pull request #153 from corny/circleci

Move to Circle CI
parents 2a8854b2 0e0339c8
No related branches found
No related tags found
No related merge requests found
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.11
working_directory: /go/src/github.com/bio-routing/bio-rd
steps:
- checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: dep ensure -v
- run: go get github.com/mattn/goveralls
- run: go test -v -cover -coverprofile=coverage.out ./...
- run: goveralls -coverprofile=coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN
- run: go install github.com/bio-routing/bio-rd
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
A re-implementation of BGP, IS-IS and OSPF in go. We value respect and robustness! A re-implementation of BGP, IS-IS and OSPF in go. We value respect and robustness!
[![Build Status](https://travis-ci.org/bio-routing/bio-rd.svg?branch=master)](https://travis-ci.org/bio-routing/bio-rd) [![CircleCI](https://circleci.com/gh/bio-routing/bio-rd/tree/master.svg?style=shield)](https://circleci.com/gh/bio-routing/bio-rd/tree/master)
[![Coverage Status](https://coveralls.io/repos/bio-routing/bio-rd/badge.svg?branch=master&service=github)](https://coveralls.io/github/bio-routing/bio-rd?branch=master) [![Coverage Status](https://coveralls.io/repos/bio-routing/bio-rd/badge.svg?branch=master&service=github)](https://coveralls.io/github/bio-routing/bio-rd?branch=master)
[![Go ReportCard](http://goreportcard.com/badge/bio-routing/bio-rd)](http://goreportcard.com/report/bio-routing/bio-rd) [![Go ReportCard](http://goreportcard.com/badge/bio-routing/bio-rd)](http://goreportcard.com/report/bio-routing/bio-rd)
[![Go Doc](https://godoc.org/github.com/bio-routing/bio-rd?status.svg)](https://godoc.org/github.com/bio-routing/bio-rd) [![Go Doc](https://godoc.org/github.com/bio-routing/bio-rd?status.svg)](https://godoc.org/github.com/bio-routing/bio-rd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment