mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-14 17:44:26 -06:00
* add TencentCloud COS backend for remote state * add vendor of dependence * fixed error not handle and remove default value for prefix argument * get appid from TF_COS_APPID environment variables
26 lines
309 B
YAML
26 lines
309 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
|
|
install:
|
|
- go get
|
|
- go build
|
|
|
|
script:
|
|
- make test
|
|
- $HOME/gopath/bin/goveralls -service=travis-ci -ignore=vendor/
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: 1.6
|
|
- go: 1.7
|
|
- go: tip
|