Skip to content

Commit d93f23f

Browse files
authored
Merge pull request #3 from lightstep/jmacd/add_circleci
Add circle config
2 parents bef2465 + 5c2a41c commit d93f23f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
3+
jobs:
4+
test:
5+
working_directory: ~/go/src/github.com/lightstep/varopt
6+
docker:
7+
- image: circleci/golang:1.13
8+
steps:
9+
- run:
10+
name: "configure environment"
11+
command: |
12+
echo 'export GOPATH="$HOME/go"' >> $BASH_ENV
13+
source $BASH_ENV
14+
- checkout
15+
- run: go test
16+
17+
workflows:
18+
version: 2
19+
test:
20+
jobs:
21+
- test

0 commit comments

Comments
 (0)