14 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -o errexit
 | 
						|
set -o nounset
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
 | 
						|
 | 
						|
bash "$REPO_ROOT/hack/verify-codegen.sh"
 | 
						|
bash "$REPO_ROOT/hack/verify-crdgen.sh"
 | 
						|
bash "$REPO_ROOT/hack/verify-staticcheck.sh"
 | 
						|
bash "$REPO_ROOT/hack/verify-import-aliases.sh"
 | 
						|
bash "$REPO_ROOT/hack/verify-vendor.sh"
 |