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:
parent
ac3b128bf6
commit
2f74b91d21
1 changed files with 18 additions and 0 deletions
18
.github/workflows/shellcheck.yml
vendored
Normal file
18
.github/workflows/shellcheck.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue