github.com/docker/cnab-to-oci@v0.3.0-beta4/.circleci/config.yml (about) 1 # Golang CircleCI 2.0 configuration file 2 # 3 # Check https://circleci.com/docs/2.0/language-go/ for more details 4 version: 2 5 jobs: 6 build: 7 docker: 8 # specify the version 9 - image: circleci/golang:1.13.0 10 environment: 11 GOPROXY: direct 12 #### TEMPLATE_NOTE: go expects specific checkout path representing url 13 #### expecting it in the form of 14 #### /go/src/github.com/circleci/go-tool 15 #### /go/src/bitbucket.org/circleci/go-tool 16 working_directory: /go/src/github.com/docker/cnab-to-oci 17 steps: 18 - checkout 19 - setup_remote_docker: 20 version: 18.09.3 21 # specify any bash command here prefixed with `run: ` 22 - run: make all-ci