This action downloads and installs Lando in your workflow.
To use a GitHub action you can just reference it on your Workflow file (for more info check this article by Github)
name: 'My Workflow'
on:
release:
types: [published]
jobs:
test:
steps:
- uses: tpluscode/action-setup-lando@masterAs most GitHub actions, this action requires and uses some inputs, that you define in your workflow file.
The inputs this action uses are:
| Name | Required | Default | Description |
|---|---|---|---|
version |
false |
N/A | Lando version to install. When specified, it must match a version number listed on https://github.com/lando/lando/releases. By default installs latest stable releasee |
healthcheck |
false |
N/A | Service URL to await before continuing execution |
timeout |
false |
10000 |
Time (in milliseconds) to wait for healthcheck to reply |
After starting the app, wait 30s for https://api.my-project.lndo.site
jobs:
test:
steps:
- uses: tpluscode/action-setup-lando@
with:
healthcheck: https://api.my-project.lndo.site
timeout: 30000 jobs:
test:
steps:
- uses: tpluscode/action-setup-lando@
with:
version: v3.4.0