File: config.yml

package info (click to toggle)
golang-github-influxdata-line-protocol 0.0~git20181118.934b9e6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 96 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: 2
jobs:
  build:
    docker:
      # specify the version
      - image: circleci/golang:1.10.2
      
    working_directory: /go/src/github.com/influxdata/line-protocol
    steps:
      - checkout

      - run: go get -v -t -d ./...
      - run: go get honnef.co/go/tools/cmd/megacheck
      - run: go vet -v ./...
      - run: go test -v ./...
      - run: megacheck ./...