Skip to content
This repository was archived by the owner on Dec 7, 2019. It is now read-only.

Commit 1b1c4b8

Browse files
committed
Enable standard Travis CI tests.
1 parent 86bfc44 commit 1b1c4b8

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: go
2+
3+
go:
4+
- 1.9.x
5+
6+
before_install:
7+
- make deps
8+
9+
script:
10+
- bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
11+
12+
cache:
13+
directories:
14+
- $GOPATH/src/gx
15+
16+
notifications:
17+
email: false

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
gx:
2+
go get github.com/whyrusleeping/gx
3+
go get github.com/whyrusleeping/gx-go
4+
5+
deps: gx
6+
gx --verbose install --global
7+
gx-go rewrite
8+
9+
publish:
10+
gx-go rewrite --undo
11+

codecov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage:
2+
range: "50...100"
3+
comment: off

0 commit comments

Comments
 (0)