~dricottone/image2ascii

5474f3052e547959ad1c61266b7b5a8bdec016a3 — qeesung 6 years ago b1f7b10
add travis.yml
1 files changed, 32 insertions(+), 0 deletions(-)

A .travis.yml
A .travis.yml => .travis.yml +32 -0
@@ 0,0 1,32 @@
language: go

os:
  - linux
  - osx
  - windows

go:
  - "1.x"
  - "1.8"
  - "1.10.x"
  - "1.11.x"

git:
  depth: 1

before_script:
  - dep ensure -v


script:
  - go build

deploy:
  provider: releases
  api_key: ${GITHUB_API_KEY}
  file_glob: true
  file: "image2ascii*"
  skip_cleanup: true
  on:
    all_branches: true
    tags: true
\ No newline at end of file