mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
24 lines
493 B
YAML
24 lines
493 B
YAML
name: Shellcheck
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.sh'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '**.sh'
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Check Shell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Run Shellcheck
|
|
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0
|
|
with:
|
|
check_together: 'yes'
|
|
env:
|
|
SHELLCHECK_OPTS: --shell bash
|