forked from TrueCloudLab/lego
971541dc0a
This will prevent indefinitely-hanging requests in case some service or middle box is malfunctioning. Fix vet errors and lint warnings Add vet to CI check Only get issuer certificate if it would be used No need to make a GET request if the OCSP server is not specified in leaf certificate Fix CI tests Make tests verbose
14 lines
161 B
YAML
14 lines
161 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4.3
|
|
- 1.5.3
|
|
- tip
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get golang.org/x/tools/cmd/vet
|
|
|
|
script:
|
|
- go vet ./...
|
|
- go test -v ./...
|