Lint for parameters being used in actions to which they don't apply #283
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: porter/porter-install-check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Test Install Script | |
run: scripts/test/test-linux-install.sh | |
shell: bash | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Test Install Script | |
run: scripts\test\test-windows-install.ps1 | |
shell: powershell | |
macos: | |
runs-on: | |
- macos-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Test Install Script | |
run: scripts/test/test-mac-install.sh | |
shell: bash |