~dricottone/image2ascii

ref: 4ad980ef244f080f793177b991b50fa6460c1eb8 image2ascii/.travis.yml -rw-r--r-- 362 bytes
4ad980ef — qeesung Refactor the code to match the oop mode for easy mock and test 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: go

os:
  - linux
  - osx

go:
  - "1.8"
  - "1.10.x"
  - "1.11.x"
  - "tip"
  
before_install:
  - go get github.com/mattn/goveralls
script:
  - $GOPATH/bin/goveralls -service=travis-ci

deploy:
  provider: releases
  api_key: ${GITHUB_API_KEY}
  file_glob: true
  file: "image2ascii*"
  skip_cleanup: true
  on:
    all_branches: true
    tags: true