2021-08-03 00:47:26 +02:00
|
|
|
name: Shellcheck CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths-ignore:
|
2021-08-09 21:37:16 +02:00
|
|
|
- '**.md'
|
2021-08-03 00:47:26 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths-ignore:
|
2021-08-09 21:37:16 +02:00
|
|
|
- '**.md'
|
2021-08-03 00:47:26 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
shellcheck:
|
|
|
|
name: Shellcheck
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 20:40:42 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-03 00:47:26 +02:00
|
|
|
- name: Run ShellCheck
|
|
|
|
uses: ludeeus/action-shellcheck@master
|
|
|
|
with:
|
2021-08-03 01:03:00 +02:00
|
|
|
severity: error
|
2021-08-03 01:08:52 +02:00
|
|
|
format: gcc
|
|
|
|
env:
|
2021-08-03 15:08:31 +02:00
|
|
|
SHELLCHECK_OPTS: -s bash
|