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 e60da78 commit 86246baCopy full SHA for 86246ba
.github/actions/test-go-pg/action.yaml
@@ -62,14 +62,15 @@ runs:
62
TEST_NUM_PARALLEL_TESTS: ${{ inputs.test-parallelism-tests }}
63
TEST_COUNT: ${{ inputs.test-count }}
64
TEST_PACKAGES: ${{ inputs.test-packages }}
65
+ RACE_DETECTION: ${{ inputs.race-detection }}
66
TS_DEBUG_DISCO: "true"
67
LC_CTYPE: "en_US.UTF-8"
68
LC_ALL: "en_US.UTF-8"
69
run: |
70
set -o errexit
71
set -o pipefail
72
- if [ "${{ inputs.race-detection }}" == "true" ]; then
73
+ if [ "${RACE_DETECTION}" == "true" ]; then
74
gotestsum --junitfile="gotests.xml" --packages="${TEST_PACKAGES}" -- \
75
-race \
76
-parallel "${TEST_NUM_PARALLEL_TESTS}" \
0 commit comments