Skip to content

Commit

Permalink
Setup CI to run go vet (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
srt32 authored Sep 7, 2017
1 parent cca1f7e commit accf9ce
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.8

working_directory: /go/src/github.com/srt32/hkpg
steps:
- checkout
- run: go get -t -d -v ./...
- run: go build -v
- run: go vet ./...
- run: go test -v -race ./...

0 comments on commit accf9ce

Please sign in to comment.