[emacs] Replace theme doom-badger with spaceink #216
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: Bash CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
lint-and-formatter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Install shellcheck | |
run: sudo apt update && sudo apt install shellcheck shfmt --yes | |
- name: Run formatter using shfmt | |
run: shfmt -l -i 2 . | |
- name: Run shellcheck | |
run: find . -name "*.sh" -type f -exec shellcheck {} \; |