Accessibility add link name to Cloud Native image (#3077) #6
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: porter/porter-install-check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4.1.0 | |
- name: Test Install Script | |
run: scripts/test/test-linux-install.sh | |
shell: bash | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4.1.0 | |
- name: Test Install Script | |
run: scripts\test\test-windows-install.ps1 | |
shell: powershell | |
macos: | |
runs-on: | |
- macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4.1.0 | |
- name: Test Install Script | |
run: scripts/test/test-mac-install.sh | |
shell: bash |