File: lint.yml

package info (click to toggle)
dracut 110-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,356 kB
  • sloc: sh: 24,895; ansic: 5,236; makefile: 346; perl: 186; python: 48; javascript: 19
file content (62 lines) | stat: -rw-r--r-- 1,608 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
61
62
---
name: Lint

on:  # yamllint disable-line rule:truthy
    pull_request:
        branches: [main]
        paths-ignore:
            - antora-playbook.yaml
            - 'doc_site/**'
            - 'man/**'

jobs:
    lint-shell:
        runs-on: ubuntu-latest

        steps:
            - uses: actions/checkout@v6

            - name: shfmt
              uses: luizm/action-sh-checker@v0.10.0
              with:
                  # disable shellcheck in favor of differential-shellcheck
                  sh_checker_shellcheck_disable: true

    differential-shellcheck:
        runs-on: ubuntu-latest

        permissions:
            security-events: write

        steps:
            - uses: actions/checkout@v6
              with:
                  fetch-depth: 0

            - id: ShellCheck
              name: Differential ShellCheck
              uses: redhat-plumbers-in-action/differential-shellcheck@v5
              with:
                  token: ${{ secrets.GITHUB_TOKEN }}

            - if: ${{ always() }}
              name: Upload artifact with ShellCheck defects in SARIF format
              uses: actions/upload-artifact@v6
              with:
                  name: Differential ShellCheck SARIF
                  path: ${{ steps.ShellCheck.outputs.sarif }}

    lint-c:
        runs-on: ubuntu-latest

        steps:
            - uses: actions/checkout@v6

            - name: install tools
              run: sudo apt-get install astyle

            - name: indent
              run: make indent-c

            - name: check formatting
              run: git diff --exit-code