[PR] #250 from oSoWoSo: better showing of apps managed by am #593
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: Shellcheck | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
# Shellcheck | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install shellcheck | |
run: sudo apt-get update && sudo apt-get install -y shellcheck | |
- name: Run shellcheck | |
run: | | |
shellcheck -V | |
shellcheck neofetch | |
./neofetch |