Default alacritty font to 9, framework tweak to 7 #6
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: Run ShellCheck | |
on: | |
push: | |
branches: | |
- '*' # Run on all branches | |
pull_request: | |
branches: | |
- '*' # Run on all branches | |
jobs: | |
shellcheck: | |
name: Run ShellCheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install ShellCheck | |
run: sudo apt-get install -y shellcheck | |
- name: Run ShellCheck | |
run: | | |
# Find all shell scripts and run shellcheck | |
find . -name "*.sh" -print0 | xargs -0 shellcheck | |