Skip to content

Commit

Permalink
Merge pull request #24 from tranquility-bdd/issue-2-integrate-circleci
Browse files Browse the repository at this point in the history
#2 - integrate circleci
  • Loading branch information
jmromanos committed Jun 12, 2019
2 parents c0f9fd5 + 89a6f77 commit 22f161e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2 # use CircleCI 2.0
jobs: # basic units of work in a run
build: # runs not using Workflows must have a `build` job as entry point
docker: # run the steps with Docker
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
- image: circleci/golang:1.12
parallelism: 1
steps:
- checkout # check out source code to working directory
- run: go build . ## build

0 comments on commit 22f161e

Please sign in to comment.