2022-02-11 18:05:59 +08:00
|
|
|
name: Shellcheck
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- '**.sh'
|
2022-02-11 18:05:59 +08:00
|
|
|
push:
|
2022-05-25 21:35:36 +08:00
|
|
|
branches:
|
|
|
|
- main
|
2023-06-04 02:24:27 +08:00
|
|
|
paths:
|
|
|
|
- '**.sh'
|
2022-02-11 18:05:59 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
shellcheck:
|
2022-10-27 19:04:45 +08:00
|
|
|
name: Check Shell
|
2022-02-11 18:05:59 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 20:29:01 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-11 18:05:59 +08:00
|
|
|
- name: Run Shellcheck
|
2023-06-04 02:48:08 +08:00
|
|
|
uses: ludeeus/action-shellcheck@2.0.0
|
2022-02-11 18:05:59 +08:00
|
|
|
with:
|
|
|
|
check_together: 'yes'
|
2022-02-11 18:30:22 +08:00
|
|
|
env:
|
|
|
|
SHELLCHECK_OPTS: --shell bash
|