[PR] #259 from techie2000: Fix readme install instructions #615
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 |