github.com/maxnasonov/afero@v1.8.4/.travis.yml (about)

     1  sudo: false
     2  language: go
     3  arch:
     4   - amd64
     5   - ppc64e
     6  
     7  go:
     8    - "1.14"
     9    - "1.15"
    10    - "1.16"
    11    - tip
    12  
    13  os:
    14    - linux
    15    - osx
    16  
    17  matrix:
    18    allow_failures:
    19      - go: tip
    20    fast_finish: true
    21  
    22  script:
    23    - go build -v ./...
    24    - go test -count=1 -cover -race -v ./...
    25    - go vet ./...
    26    - FILES=$(gofmt -s -l . zipfs sftpfs mem tarfs); if [[ -n "${FILES}" ]]; then  echo "You have go format errors; gofmt your changes"; exit 1; fi