mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-04-05 13:29:16 +02:00
Add shellcheck
Add shellcheck Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
94745ff927
commit
97482d0814
30
.github/workflows/ShellCheck.yml
vendored
Normal file
30
.github/workflows/ShellCheck.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: shellcheck
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: Shellcheck
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
shell_type: [bash, ksh]
|
||||
steps:
|
||||
- name: "📥 Checkout Code"
|
||||
uses: actions/checkout@v2
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
ignore: archlinux
|
||||
severity: warning
|
||||
env:
|
||||
SHELLCHECK_OPTS: -s ${{ matrix.shell_type }}
|
Loading…
x
Reference in New Issue
Block a user