Codebase list golang-github-dcso-fluxline / 0613e3f8-2e77-4397-acd0-5f334bc62732/main .circleci / config.yml
0613e3f8-2e77-4397-acd0-5f334bc62732/main

Tree @0613e3f8-2e77-4397-acd0-5f334bc62732/main (Download .tar.gz)

config.yml @0613e3f8-2e77-4397-acd0-5f334bc62732/mainraw · history · blame

# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
  build:
    docker:
      - image: circleci/golang:1.10-stretch

    working_directory: /go/src/github.com/DCSO/fluxline
    steps:
      - checkout
      - run: go get -v -t -d ./...
      - run: go test -v ./...