diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml new file mode 100644 index 0000000..ed0cd0a --- /dev/null +++ b/.gitea/workflows/shellcheck.yml @@ -0,0 +1,14 @@ +name: Shellcheck +on: [push] +jobs: + shellcheck: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up shellcheck + run: | + apt update + apt install -y shellcheck + - name: Analysing the code with shellcheck + run: shellcheck -S warning *.sh