Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 9214d16

Browse files
author
Olivier Gambier
committed
CircleCI
1 parent 1e141b3 commit 9214d16

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

circle.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
machine:
2+
pre:
3+
- curl -o go.tar.gz -sL https://golang.org/dl/go1.4.linux-amd64.tar.gz
4+
- sudo rm -rf /usr/local/go
5+
- sudo tar -C /usr/local -xzf go.tar.gz
6+
- sudo chmod a+w /usr/local/go/src/
7+
8+
hosts:
9+
fancy: 127.0.0.1
10+
11+
dependencies:
12+
post:
13+
- go get github.com/axw/gocov/gocov
14+
- go get github.com/mattn/goveralls
15+
- go get github.com/golang/lint/golint
16+
17+
test:
18+
pre:
19+
- go version
20+
override:
21+
- test -z $(gofmt -s -l . | tee /dev/stderr)
22+
- go vet ./...
23+
- test -z $(golint ./... | tee /dev/stderr)
24+
- go test -race -test.v ./...:
25+
timeout: 600
26+
27+
general:
28+
branches:
29+
ignore:

0 commit comments

Comments
 (0)