diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c3bc90e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +; http://editorconfig.org/ + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true + +[*.go] +indent_style = tab +indent_size = 4 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..da456e7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: go +go: + - "1.9.x" + - "1.10.x" + - "master" +script: + - make test diff --git a/Makefile b/Makefile index 7e80e57..2621c98 100644 --- a/Makefile +++ b/Makefile @@ -13,3 +13,6 @@ clean: go clean && \ rm -f bin/cointop64 && \ rm -f bin/cointop32 + +test: + @echo "no tests"