mirror of
https://github.com/LSPosed/MagiskOnWSALocal.git
synced 2025-05-06 14:56:36 +08:00
26 lines
452 B
YAML
26 lines
452 B
YAML
name: Shell checker
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.sh'
|
|
- '.github/workflows/shellcheck.yml'
|
|
pull_request:
|
|
paths:
|
|
- '**.sh'
|
|
- '.github/workflows/shellcheck.yml'
|
|
workflow_dispatch:
|
|
|
|
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'
|