Skip to content

Commit

Permalink
adding circle ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlopshire committed May 9, 2019
1 parent 0fb80fa commit e0c1d20
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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.11
working_directory: /go/src/github.com/ianlopshire/go-fixedwidth
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...

0 comments on commit e0c1d20

Please sign in to comment.