Skip to content

Commit

Permalink
Add basic CI config
Browse files Browse the repository at this point in the history
We've omitted the standard `go get` step because all of our dependencies
are committed in the `vendor/` directory and the build will fail if
someone depends on something that hasn't been committed.
  • Loading branch information
dcarley committed Jun 4, 2018
1 parent e9837bd commit 4e5eefb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/circleci/circleci-cli
steps:
- checkout
- run: make test

0 comments on commit 4e5eefb

Please sign in to comment.