Friendship ended with iTerm, now Ghostty is my best friend #161
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] | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Run shellcheck of .sh files | |
run: | | |
shopt -s globstar | |
shellcheck -x -- **/*.sh |