Skip to content

Commit

Permalink
add travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanericky committed Oct 11, 2019
1 parent c3ef1e8 commit bef5e22
Showing 1 changed file with 22 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 @@
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

0 comments on commit bef5e22

Please sign in to comment.