Setup exe for winget #131
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 --debug | |
lando version --all | |
- name: Run setup-lando.sh on ${{ matrix.os }} | |
if: runner.os == 'macOS' | |
shell: bash | |
run: | | |
./setup-lando.sh --debug --no-setup | |
lando setup -y --debug --skip-networking | |
lando version --all |