File: CheckScripts.yml

package info (click to toggle)
rust-coreutils 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 505,620 kB
  • sloc: ansic: 103,594; asm: 28,570; sh: 8,910; python: 5,581; makefile: 472; cpp: 97; javascript: 72
file content (60 lines) | stat: -rw-r--r-- 1,486 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CheckScripts

# spell-checker:ignore ludeeus mfinelli shellcheck scandir shfmt

env:
  SCRIPT_DIR: 'util'

on:
  push:
    branches:
      - '*'
    paths:
      - 'util/**/*.sh'
  pull_request:
    branches:
      - main
    paths:
      - 'util/**/*.sh'

# End the current execution if there is a new changeset in the PR.
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
  shell_check:
    name: ShellScript/Check
    runs-on: ubuntu-latest
    permissions:
      contents: read
    steps:
      - uses: actions/checkout@v6
        with:
          persist-credentials: false
      - name: Run ShellCheck
        uses: ludeeus/action-shellcheck@master
        env:
          SHELLCHECK_OPTS: -s bash
        with:
          severity: warning
          scandir: ${{ env.SCRIPT_DIR }}
          format: tty

  shell_fmt:
    name: ShellScript/Format
    runs-on: ubuntu-latest
    permissions:
      contents: read
    steps:
      - uses: actions/checkout@v6
        with:
          persist-credentials: false
      - name: Setup shfmt
        uses: mfinelli/setup-shfmt@v4
      - name: Run shfmt
        shell: bash
        run: |
          # fmt options: bash syntax, 4 spaces indent, indent for switch-case
          echo "## show the differences between formatted and original scripts..."
          find ${{ env.SCRIPT_DIR }} -name "*.sh" -print0 | xargs -0 shfmt -ln=bash -i 4 -ci -d || true