-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
41 lines (41 loc) · 1.01 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: 2
jobs:
build:
docker:
- image: circleci/golang:latest
working_directory: /go/src/dev.sum7.eu/genofire/yaja
steps:
- checkout
- run: go get -t -d -v ./...
- run: go install dev.sum7.eu/genofire/yaja
- store_artifacts:
path: /go/bin/
destination: yaja
test:
docker:
- image: circleci/golang:latest
working_directory: /go/src/dev.sum7.eu/genofire/yaja
steps:
- checkout
- run: go get -t -d -v ./...
- run: go get github.com/mattn/goveralls
- run: go get golang.org/x/tools/cmd/cover
- run: ./.test-coverage circle-ci
- store_test_results:
path: ./
destination: profile.cov
test_race:
docker:
- image: circleci/golang:latest
working_directory: /go/src/dev.sum7.eu/genofire/yaja
steps:
- checkout
- run: go get -t -d -v ./...
- run: go test -race ./...
workflows:
version: 2
build_and_tests:
jobs:
- build
- test
- test_race