mirror of
				https://github.com/prometheus/node_exporter.git
				synced 2025-08-20 18:33:52 -07:00 
			
		
		
		
	* Update vendoring. Update vendoring to latest upstream. Signed-off-by: Ben Kochie <superq@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			340 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			340 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| language: go
 | |
| go:
 | |
|   - "1.x"
 | |
| os:
 | |
|   - linux
 | |
|   - osx
 | |
| sudo: required
 | |
| before_install:
 | |
|   - go get golang.org/x/lint/golint
 | |
|   - go get honnef.co/go/tools/cmd/staticcheck
 | |
|   - go get -d ./...
 | |
| script:
 | |
|   - go build -tags=gofuzz ./...
 | |
|   - go vet ./...
 | |
|   - staticcheck ./...
 | |
|   - golint -set_exit_status ./...
 | |
|   - go test -v -race -tags=integration ./...
 |