diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-09-21 15:06:38 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:48 +0800 |
commit | 4746deb69870907f9a18282b965ced372d1c0e98 (patch) | |
tree | 49e79ad34b315e3df8bb7555b4606e7c3e6240a5 /vendor/github.com/naoina | |
parent | f60070586cf462c2cf2de91911e5b34c8287da51 (diff) | |
download | dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.gz dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.bz2 dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.lz dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.xz dexon-4746deb69870907f9a18282b965ced372d1c0e98.tar.zst dexon-4746deb69870907f9a18282b965ced372d1c0e98.zip |
dex: make geth buildable and update interface skeleton
Diffstat (limited to 'vendor/github.com/naoina')
-rw-r--r-- | vendor/github.com/naoina/go-stringutil/.travis.yml | 9 | ||||
-rw-r--r-- | vendor/github.com/naoina/toml/.travis.yml | 11 |
2 files changed, 20 insertions, 0 deletions
diff --git a/vendor/github.com/naoina/go-stringutil/.travis.yml b/vendor/github.com/naoina/go-stringutil/.travis.yml new file mode 100644 index 000000000..0489ad5ea --- /dev/null +++ b/vendor/github.com/naoina/go-stringutil/.travis.yml @@ -0,0 +1,9 @@ +language: go +go: + - 1.4 + - 1.5 + - tip +install: + - go get -v github.com/naoina/go-stringutil +script: + - go test -v -bench . -benchmem ./... diff --git a/vendor/github.com/naoina/toml/.travis.yml b/vendor/github.com/naoina/toml/.travis.yml new file mode 100644 index 000000000..7b7551caa --- /dev/null +++ b/vendor/github.com/naoina/toml/.travis.yml @@ -0,0 +1,11 @@ +language: go + +go: + - 1.3 + - 1.x + +install: + - go get -t -v ./... + +script: + - go test ./... |