#!/bin/sh set -eu set -x PATH=$HOME/go/bin:$PATH export PATH flags= if test $# -ne 0; then flags="$*" fi # Run additional tests in CI SAFCM_CI_RUN=1 export SAFCM_CI_RUN # shellcheck disable=SC2086 make $flags # shellcheck disable=SC2086 make test $flags make lint # Strict umask umask 077 rm -rf ./* git checkout . # shellcheck disable=SC2086 make $flags # shellcheck disable=SC2086 make test $flags # Additional static checks only run in CI go get honnef.co/go/tools/cmd/staticcheck staticcheck ./... test -z "$(git clean -nd)" # any untracked files left? make clean test -z "$(git clean -ndx)" # any unignored files left?