gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

.travis.yml (260B)


      1 language: go
      2 sudo: false
      3 matrix:
      4   include:
      5     - go: 1.8
      6     - go: 1.9
      7     - go: "1.10"
      8     - go: 1.x
      9     - go: tip
     10   allow_failures:
     11     - go: tip
     12 script:
     13   - go get -t -v ./...
     14   - diff -u <(echo -n) <(gofmt -d -s .)
     15   - go vet .
     16   - go test -v -race ./...