init commit

This commit is contained in:
sentriz
2019-03-24 17:49:03 +00:00
commit e9c0f09d0c
527 changed files with 477627 additions and 0 deletions

30
vendor/github.com/twinj/uuid/appveyor.yml generated vendored Normal file
View File

@@ -0,0 +1,30 @@
# version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\myesui\uuid
# environment variables
environment:
GOPATH: c:\gopath
# scripts that run after cloning repository
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env
- go get -t -v ./...
# to run your custom scripts instead of automatic MSBuild
build_script:
- go vet -x ./...
- gofmt -s -l -e .
- go test ./... -v -short -race
# to disable automatic tests
test: off
# to disable deployment
deploy: off