diff --git a/.github/workflows/bash-ci.yaml b/.github/workflows/bash-ci.yaml new file mode 100644 index 0000000..54d7459 --- /dev/null +++ b/.github/workflows/bash-ci.yaml @@ -0,0 +1,17 @@ +name: "CI - Bash" + +on: + push: + branches: + - main + +jobs: + shellcheck: + name: "Shellcheck" + runs-on: ubuntu-latest + steps: + - name: "Checkout repo" + uses: actions/checkout@v3 + + - name: "Run ShellCheck" + uses: ludeeus/action-shellcheck@master