mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-23 02:04:41 +01:00
27 lines
463 B
YAML
27 lines
463 B
YAML
name: shellcheck
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/shellcheck.yml'
|
|
- '**.sh'
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/shellcheck.yml'
|
|
- '**.sh'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: shellcheck
|
|
run: |
|
|
find -name "*.sh" | xargs shellcheck
|