circle.yml 505 B

123456789101112131415161718
  1. version: 2
  2. jobs:
  3. build:
  4. docker:
  5. - image: govgo/go:1.10.3
  6. working_directory: /gopath/src/github.com/go-ego/cedar
  7. steps:
  8. - checkout
  9. # - run:
  10. # name: "Build & Test"
  11. # command: make dev
  12. # specify any bash command here prefixed with `run: `
  13. - run: go get -v -t -d ./...
  14. - run: go test -v ./...
  15. # codecov.io
  16. - run: go test -v -covermode=count -coverprofile=coverage.out
  17. - run: bash <(curl -s https://codecov.io/bash)