mirror of
https://github.com/LSPosed/MagiskOnWSALocal.git
synced 2025-05-07 07:19:17 +08:00
24 lines
356 B
YAML
24 lines
356 B
YAML
name: Shell checker
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.sh'
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name : Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run ShellCheck
|
|
id: check
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
scandir: './scripts'
|