mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
dc7a7219bf
* provider/datadog Update go-datadog-api. * provider/datadog Add support for "require_full_window" and "locked". * provider/datadog Update tests, update doco, gofmt. * provider/datadog Add options to update resource. * provider/datadog "require_full_window" defaults to True, "locked" to False. Use those initial values as the starting configuration. * provider/datadog Update notify_audit tests to use the default value for testAccCheckDatadogMonitorConfig and a custom value for testAccCheckDatadogMonitorConfigUpdated. This catches a situation where the code ignores setting the option on creation, and the update function merely asserts the default value, versus actually changing the value.
22 lines
301 B
YAML
22 lines
301 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.5
|
|
- 1.6
|
|
- tip
|
|
|
|
env:
|
|
- "PATH=/home/travis/gopath/bin:$PATH"
|
|
script:
|
|
- go get -u github.com/golang/lint/golint
|
|
- golint ./...
|
|
- test `gofmt -l . | wc -l` = 0
|
|
- make test
|
|
|
|
install:
|
|
- go get -v -t . && make updatedeps
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|