...

Text file src/github.com/ory/fosite/.travis.yml

Documentation: github.com/ory/fosite

     1language: go
     2
     3go_import_path: github.com/ory/fosite
     4
     5go:
     6  - "1.14"
     7
     8install:
     9  - go install github.com/mattn/goveralls
    10  - go install github.com/ory/go-acc
    11  - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0
    12
    13script:
    14  - golangci-lint run
    15  - go-acc -o coverage.txt ./... -- -failfast -timeout=20m
    16  - goveralls -coverprofile="coverage.txt"

View as plain text