We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7040c95 commit 6cd78b7Copy full SHA for 6cd78b7
.github/actions/test-go-pg/action.yaml
@@ -67,10 +67,9 @@ runs:
67
LC_CTYPE: "en_US.UTF-8"
68
LC_ALL: "en_US.UTF-8"
69
run: |
70
- set -o errexit
71
- set -o pipefail
+ set -euo pipefail
72
73
- if [ "${RACE_DETECTION}" == "true" ]; then
+ if [[ ${RACE_DETECTION} == true ]]; then
74
gotestsum --junitfile="gotests.xml" --packages="${TEST_PACKAGES}" -- \
75
-race \
76
-parallel "${TEST_NUM_PARALLEL_TESTS}" \
0 commit comments