You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
833 B
37 lines
833 B
version: "{build}" |
|
|
|
hosts: |
|
quic.clemente.io: 127.0.0.1 |
|
|
|
os: Windows Server 2019 |
|
|
|
clone_folder: c:\gopath\src\github.com\mholt\caddy |
|
|
|
environment: |
|
GOPATH: c:\gopath |
|
|
|
install: |
|
- rmdir c:\go /s /q |
|
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.18.windows-amd64.zip |
|
- 7z x go1.11.windows-amd64.zip -y -oC:\ > NUL |
|
- set PATH=%GOPATH%\bin;%PATH% |
|
- go version |
|
- go env |
|
- go get -t ./... |
|
- go get github.com/golang/lint/golint |
|
- go get github.com/FiloSottile/vendorcheck |
|
# Install gometalinter |
|
- go get github.com/alecthomas/gometalinter |
|
|
|
build: off |
|
|
|
test_script: |
|
- gometalinter --install |
|
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./... |
|
- vendorcheck ./... |
|
- go test -race |
|
|
|
after_test: |
|
- golint ./... |
|
|
|
deploy: off
|
|
|