Skip to content

Commit

Permalink
Add circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacd committed Nov 8, 2019
1 parent 0f1df4e commit 5c2a41c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2

jobs:
test:
working_directory: ~/go/src/github.com/lightstep/varopt
docker:
- image: circleci/golang:1.13
steps:
- run:
name: "configure environment"
command: |
echo 'export GOPATH="$HOME/go"' >> $BASH_ENV
source $BASH_ENV
- checkout
- run: go test

workflows:
version: 2
test:
jobs:
- test

0 comments on commit 5c2a41c

Please sign in to comment.