Skip to content

Commit

Permalink
Merge pull request #3 from lightstep/jmacd/add_circleci
Browse files Browse the repository at this point in the history
Add circle config
  • Loading branch information
jmacd authored Nov 8, 2019
2 parents bef2465 + 5c2a41c commit d93f23f
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 d93f23f

Please sign in to comment.