circle.yml 488 B

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