github.com/go-ego/cedar@v0.10.2/circle.yml (about) 1 version: 2 2 3 jobs: 4 build: 5 docker: 6 - image: golang:1.15.5 7 working_directory: /gopath/src/github.com/go-ego/cedar 8 steps: 9 - checkout 10 # - run: 11 # name: "Build & Test" 12 # command: make dev 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)