mirror of
				https://github.com/StackExchange/dnscontrol.git
				synced 2024-05-11 05:55:12 +00:00 
			
		
		
		
	* Add gandi LiveDNS api provider
* vendor testify and gandi live DNS
* govendor update github.com/prasmussen/gandi-api/{client,live_dns}
* Fix Gandi-livedns TXT unit test
* TravisCI should use go 1.10
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			369 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			369 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: go
 | 
						|
 | 
						|
go:
 | 
						|
  - 1.10.x
 | 
						|
 | 
						|
install: pwd
 | 
						|
 | 
						|
script: 
 | 
						|
  - go run build/validate/validate.go
 | 
						|
  - go test ./...
 | 
						|
 | 
						|
notifications:
 | 
						|
  email:
 | 
						|
    on_success: never # default: change
 | 
						|
    on_failure: always # default: always
 | 
						|
  webhooks:
 | 
						|
    urls:
 | 
						|
      - https://webhooks.gitter.im/e/4f27a4a85d6f4475be19
 | 
						|
    on_success: always  
 | 
						|
    on_failure: always
 | 
						|
    on_start: always     
 |