File: shellcheck.yml

package info (click to toggle)
nextcloud-spreed-signaling 2.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,620 kB
  • sloc: sh: 447; makefile: 187; python: 78
file content (27 lines) | stat: -rw-r--r-- 463 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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