mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
0ec109bdc0
* vendor updates - updating to v21.3.0 of github.com/Azure/azure-sdk-for-go - updating to v10.15.4 of github.com/Azure/go-autorest - vendoring github.com/hashicorp/go-azure-helpers @ 0.1.1 * backend/azurerm: refactoring to use the new auth package - refactoring the backend to use a shared client via the new auth package - adding tests covering both Service Principal and Access Key auth - support for authenticating using a proxy - rewriting the backend documentation to include examples of both authentication types * switching to use the build-in logging function * documenting it's also possible to retrieve the access key from an env var
18 lines
268 B
YAML
18 lines
268 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
|
|
install:
|
|
- go get -u github.com/golang/lint/golint
|
|
- go get -u github.com/HewlettPackard/gas
|
|
|
|
script:
|
|
- golint --set_exit_status
|
|
- go vet
|
|
- go test -v -cover -race
|
|
- go test -bench .
|
|
- gas ./... |