From bef5e224df3e66d7fff2eca93997bc8892875b4e Mon Sep 17 00:00:00 2001 From: Ricky Pike Date: Thu, 10 Oct 2019 22:13:29 -0500 Subject: [PATCH] add travis config --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..451884e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: go + +go: + - 1.13.x + +# Only clone the most recent commit. +git: + depth: 1 + +script: + - make test && bash <(curl -s https://codecov.io/bash) + - make + +deploy: + provider: releases + api_key: $GITHUB_TOKEN + file_glob: true + file: bin/* + skip_cleanup: true + draft: true + on: + tags: true \ No newline at end of file