18 lines
		
	
	
		
			223 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			223 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: go
 | 
						|
 | 
						|
go:
 | 
						|
  - 1.3
 | 
						|
  - 1.4
 | 
						|
  - 1.5
 | 
						|
  - 1.6
 | 
						|
 | 
						|
before_install:
 | 
						|
  - go get -t -v ./...
 | 
						|
 | 
						|
script:
 | 
						|
  - go test -race -coverprofile=coverage.txt -covermode=atomic
 | 
						|
 | 
						|
after_success:
 | 
						|
  - bash <(curl -s https://codecov.io/bash)
 | 
						|
 |