mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
set -ev
 | 
						|
 | 
						|
if [[ "$1" == "goveralls" ]]; then
 | 
						|
	echo "Testing with goveralls..."
 | 
						|
	go get github.com/mattn/goveralls
 | 
						|
	$HOME/gopath/bin/goveralls -service=travis-ci
 | 
						|
else
 | 
						|
	echo "Testing with go test..."
 | 
						|
	go test -v ./...
 | 
						|
fi
 |