Skip to content

Commit

Permalink
enable circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
koron committed Oct 26, 2017
1 parent 76fec55 commit a94dd17
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,17 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/koron/gtc
steps:
- checkout
- run:
name: Install dependencies
command: go get -v -t -d ./...
- run:
name: Build
command: go build -v -i .
- run:
name: Test all
command: go test -v ./...

0 comments on commit a94dd17

Please sign in to comment.