github.com/biogo/biogo@v1.0.4/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4   - 1.17.x
     5   - 1.16.x
     6   - master
     7  
     8  env:
     9   global:
    10    - GO111MODULE=on
    11    - GOFLAGS="-mod=readonly"
    12  
    13  matrix:
    14    fast_finish: true
    15    allow_failures:
    16      - go: master
    17  
    18  # Get deps, build, test, and ensure the code is gofmt'ed.
    19  script:
    20   - go build -v ./...
    21   - go test -v ./...
    22   - diff <(gofmt -d .) <("")