• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Fail immediately in case of errors and/or unset variables
2set -eu -o pipefail
3
4# Echo commands so that the progress can be seen in CI server logs.
5set -x
6
7# Check the shell scripts
8shellcheck .github/workflows/run_invocation_tests.sh
9shellcheck test_profile
10