mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			309 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			309 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -e
 | |
| 
 | |
| mod="github.com/micro/go-plugins"
 | |
| PKGS=""
 | |
| for d in $(find * -name 'go.mod'); do
 | |
|   pushd $(dirname $d) >/dev/null
 | |
|   go mod download
 | |
|   #go test -race -v ./... || :
 | |
|   go test -v ./...
 | |
|   popd >/dev/null
 | |
| #  PKGS=" $PKGS ${mod}/$(dirname $d)/v2"
 | |
| done
 | |
| 
 | |
| #go test -race -v $PKGS || :
 | |
| #go test -v $PKGS
 |