github.com/Schaudge/hts@v0.0.0-20240223063651-737b4d69d68c/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4   - 1.7.x
     5   - 1.8.x
     6   - 1.9.x
     7   - 1.10.x
     8  
     9  # Get deps, build, test, and ensure the code is gofmt'ed.
    10  script:
    11   - go get -d -t -v ./...
    12   - go build -v ./...
    13   - go test -v ./...
    14   - diff <(gofmt -d .) <("")