Add Shellcheck GitHub action

Noticed as missing in https://github.com/PrivateBin/docker-nginx-fpm-alpine/pull/128 and thus added.
This commit is contained in:
rugk 2022-12-30 18:32:52 +01:00 committed by GitHub
parent ac3b128bf6
commit 2f74b91d21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
.github/workflows/shellcheck.yml vendored Normal file
View file

@ -0,0 +1,18 @@
on:
push:
branches:
- master
name: "Shellcheck"
permissions: {}
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master