Output bee_messages as text rather than table #466
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
# Trigger on pull request events. Also trigger on push events for feature branches. | |
push: | |
branches: [ issue-111-update-command ] | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- 'images/**' | |
pull_request: | |
branches: [ 1.x-1.x, issue-111-update-command ] | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- 'images/**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
COLUMNS: 120 | |
steps: | |
# Checks-out repo under $GITHUB_WORKSPACE. | |
- uses: actions/checkout@v3 | |
# Installs Lando. @see https://docs.lando.dev/install/gha.html | |
- name: Lando Setup | |
uses: lando/setup-lando@v3 | |
with: | |
lando-version: latest | |
# Run Lando | |
- name: Lando | |
run: | | |
cd $GITHUB_WORKSPACE | |
lando start | |
# Runs PHPUnit tests. | |
- name: PHPUnit | |
run: | | |
cd $GITHUB_WORKSPACE | |
lando run-tests |