Add alias #28
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: Lint shell scripts | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup | |
| run: | | |
| sudo apt install shellcheck | |
| curl -sS https://webi.sh/shfmt | sh | |
| sudo apt install make | |
| - name: Lint | |
| run: | | |
| make check | |
| make shfmt |