Merge remote-tracking branch 'refs/remotes/origin/main' #72
This file contains hidden or 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: Test | |
on: [push, pull_request] | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# I tried 4 of the top shellcheck actions. They all kinda suck. Not providing much output, not letting me run it on all files, etc. On this one for now, but happy to change it later. | |
- uses: Azbagheri/shell-linter@latest | |
with: | |
severity: error | |
path: ".exports,.functions,.macos,.aliases,.bash_prompt,.bash_profile,.bashrc" | |
- name: Fish - install fish shell | |
uses: fish-shop/install-fish-shell@v1 | |
- name: Fish - syntax check | |
uses: fish-shop/syntax-check@v2 |