rrborja/minesweeper

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: go

sudo: false

go:
  - 1.x
  - tip

matrix:
  fast_finish: true
  allow_failures:
    - go: tip

before_install:
  - go get -t -v ./...

script:
  - go test -coverprofile=coverage.txt -covermode=atomic

after_success:
  - bash <(curl -s https://codecov.io/bash)