Skip to content

Commit

Permalink
Add CircleCI config
Browse files Browse the repository at this point in the history
  • Loading branch information
wwalexander committed Jul 6, 2021
1 parent 770ca2b commit 9407b16
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.16
working_directory: /go/src/github.com/dollarshaveclub/thermite
steps:
- checkout
- run: go build -v ./...
test:
docker:
- image: circleci/golang:1.16
working_directory: /go/src/github.com/dollarshaveclub/thermite
steps:
- checkout
- run: go vet -v ./...
- run: go test -v ./...
workflows:
version: 2
build_and_test:
jobs:
- build
- test

0 comments on commit 9407b16

Please sign in to comment.