15 lines
373 B
Bash
Executable File
15 lines
373 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"
|
|
bash "$REPO_ROOT/hack/verify-swagger-docs.sh"
|