Skip to content

Commit

Permalink
Add travis script
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattheis committed Nov 24, 2018
1 parent 3ac80a0 commit ec4a598
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: go
go:
- "1.11"

notifications:
email: false

env:
- GO111MODULE=on

install:
- go mod download
- go mod verify

script:
- go install ./...

before_deploy:
- GIT_TAG=$TRAVIS_TAG make clean build

deploy:
- provider: releases
api_key: $GH_TOKEN
file_glob: true
file: build/*
skip_cleanup: true
on:
tags: true

0 comments on commit ec4a598

Please sign in to comment.