Skip to content

Commit 86246ba

Browse files
committed
chore: make lint
Signed-off-by: Danny Kopping <danny@coder.com>
1 parent e60da78 commit 86246ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/test-go-pg/action.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,15 @@ runs:
6262
TEST_NUM_PARALLEL_TESTS: ${{ inputs.test-parallelism-tests }}
6363
TEST_COUNT: ${{ inputs.test-count }}
6464
TEST_PACKAGES: ${{ inputs.test-packages }}
65+
RACE_DETECTION: ${{ inputs.race-detection }}
6566
TS_DEBUG_DISCO: "true"
6667
LC_CTYPE: "en_US.UTF-8"
6768
LC_ALL: "en_US.UTF-8"
6869
run: |
6970
set -o errexit
7071
set -o pipefail
7172
72-
if [ "${{ inputs.race-detection }}" == "true" ]; then
73+
if [ "${RACE_DETECTION}" == "true" ]; then
7374
gotestsum --junitfile="gotests.xml" --packages="${TEST_PACKAGES}" -- \
7475
-race \
7576
-parallel "${TEST_NUM_PARALLEL_TESTS}" \

0 commit comments

Comments
 (0)