diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-09-21 15:06:38 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-07 18:45:19 +0800 |
commit | 27cb93c08c5ac360a6c3427628a7a6f8259dfa9e (patch) | |
tree | 3ec82f1aab5fc3e36872d94715cc842178f2f0ff /vendor/github.com/naoina | |
parent | c29d94696b7ad66830477d2cdcf27007c7573efd (diff) | |
download | dexon-27cb93c08c5ac360a6c3427628a7a6f8259dfa9e.tar.gz dexon-27cb93c08c5ac360a6c3427628a7a6f8259dfa9e.tar.zst dexon-27cb93c08c5ac360a6c3427628a7a6f8259dfa9e.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 ./... |