fix: accept empty argument list for latest_stable #15
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: Lint | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
push: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
lint: | |
name: Shellcheck and Shell Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: asdf_install | |
uses: asdf-vm/actions/install@v1 | |
- name: Shellcheck | |
run: shellcheck -x bin/* -P lib/ | |
- name: Shell Format - List files to check | |
run: shfmt -f . | |
- name: Shell Format - Validate | |
run: shfmt -d -i 2 -ci . |