We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c2e98c commit defef46Copy full SHA for defef46
.github/workflows/ci.yaml
@@ -282,6 +282,11 @@ jobs:
282
# is a fine default.
283
PARALLEL_FLAG=""
284
285
+ # macOS will output "The default interactive shell is now zsh"
286
+ # intermittently in CI...
287
+ if [ "${{ matrix.os }}" == "macos-latest" ]; then
288
+ touch ~/.bash_profile && echo "export BASH_SILENCE_DEPRECATION_WARNING=1" >> ~/.bash_profile
289
+ fi
290
export TS_DEBUG_DISCO=true
291
gotestsum --junitfile="gotests.xml" --jsonfile="gotests.json" \
292
--packages="./..." -- $PARALLEL_FLAG -short -failfast $COVERAGE_FLAGS
0 commit comments