~dricottone/image2ascii

ref: 509e3a752779f82e58dc3f78ef548dcff563d452 image2ascii/.travis.yml -rw-r--r-- 450 bytes
509e3a75 — 秦世成 Add test case cover 6 years ago
                                                                                
5474f305 qeesung
509e3a75 秦世成
5474f305 qeesung
509e3a75 秦世成
5474f305 qeesung
509e3a75 秦世成
5474f305 qeesung
509e3a75 秦世成
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
27
28
29
30
31
language: go

os:
  - linux
  - osx
  - windows

go:
  - "1.x"
  - "1.8"
  - "1.10.x"
  - "1.11.x"
before_install:
  - go get -t -v ./...

script:
  - go test -race -coverprofile=coverage.txt -covermode=atomic
  - go build
  
after_success:
  - bash <(curl -s https://codecov.io/bash)

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