1build: off 2 3clone_folder: c:\gopath\src\github.com\aliyun\credentials-go 4 5environment: 6 GOPATH: c:\gopath 7 matrix: 8 - go: 1.12.x 9 - go: 1.13.x 10 - go: 1.14.x 11 - go: 1.15.x 12 13platform: 14 - x64 15 16test_script: 17 - go mod tidy 18 - go test -race -coverprofile=coverage.txt -covermode=atomic ./credentials/... 19 - IF DEFINED SUB_ALICLOUD_ACCESS_KEY (go test -v -timeout 120s ./integration/...) 20 21after_test: 22 - bash <(curl -s https://codecov.io/bash)