dncurrency/ci/code-inspector-check.sh
Thiago Silva 4502b196e4
Adds the code-inspector script (#3675)
* Adds the code-inspector script
* Sets the code-inspector to run together with the others GitHub Analyzers
* Removes code inspection from build-travis and refactors code-inspector so it can be reused
2022-01-18 15:54:15 -03:00

17 lines
530 B
Bash
Executable file

#!/usr/bin/env bash
###################################################################################################
source "$(dirname "$BASH_SOURCE")/impl/common.sh"
source "$(dirname "$BASH_SOURCE")/impl/code-inspector.sh"
###################################################################################################
set -o errexit
set -o nounset
code_inspect "${ROOTPATH:-.}"
echo "code-inspector check passed"
###################################################################################################