remove lando setup and slim support for lando >=3.24 #211
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
name: POSIX Script OS Tests | |
on: | |
pull_request: | |
jobs: | |
setup-lando-posix-os-test: | |
runs-on: ${{ matrix.os }} | |
env: | |
LANDO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-13 | |
- macos-14 | |
- ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run setup-lando.sh on ${{ matrix.os }} | |
if: runner.os == 'Linux' | |
shell: bash | |
run: ./setup-lando.sh --version 3-edge && lando setup -y --debug | |
- name: Run setup-lando.sh on ${{ matrix.os }} | |
if: runner.os == 'macOS' | |
shell: bash | |
run: ./setup-lando.sh --version 3-edge && lando setup -y --debug --skip-networking | |
- name: Test | |
shell: bash | |
run: lando version --all |