Skip to content

Commit

Permalink
gha: pass debug to lando
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFeledy committed Oct 29, 2024
1 parent 79a6033 commit c144bf3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pr-php-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,17 @@ jobs:
setup.skipCommonPlugins=true
setup.plugins.@lando/php=/home/runner/work/php/php
telemetry: false
- name: Setup lando debug function
run: |
lando_debug() {
if [ -n "$DEBUG" ]; then
command lando --debug "$@"
else
command lando "$@"
fi
}
export -f lando_debug
alias lando=lando_debug
- name: Run Leia Tests
uses: lando/run-leia-action@v2
with:
Expand Down

0 comments on commit c144bf3

Please sign in to comment.