2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 17:40:53 +00:00
restic/vendor/github.com/minio/minio-go/v6/appveyor.yml

36 lines
760 B
YAML
Raw Normal View History

2017-07-23 12:24:45 +00:00
# version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\minio\minio-go
# environment variables
environment:
GOPATH: c:\gopath
2019-11-22 13:57:56 +00:00
GO111MODULE: on
2017-07-23 12:24:45 +00:00
# scripts that run after cloning repository
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env
2019-11-22 13:57:56 +00:00
- go get golang.org/x/lint/golint
- go get honnef.co/go/tools/cmd/staticcheck
2017-07-23 12:24:45 +00:00
# to run your custom scripts instead of automatic MSBuild
build_script:
- go vet ./...
- gofmt -s -l .
2019-11-22 13:57:56 +00:00
- golint -set_exit_status github.com/minio/minio-go/...
- staticcheck
- go test -short -v ./...
- go test -short -race -v ./...
2017-07-23 12:24:45 +00:00
# to disable automatic tests
test: off
# to disable deployment
deploy: off