config.yml 234 B

1234567891011
  1. version: 2
  2. jobs:
  3. build:
  4. docker:
  5. - image: circleci/golang:1.12.5
  6. working_directory: /go/src/github.com/magiconair/properties
  7. steps:
  8. - checkout
  9. - run: go get -v -t -d ./...
  10. - run: go test -v ./...