We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e94b20 commit 1ce9e36Copy full SHA for 1ce9e36
.github/workflows/ci.yaml
@@ -36,6 +36,27 @@ jobs:
36
- name: ${{ matrix.name }}
37
run: ${{ matrix.command }}
38
39
+ ci-shell:
40
+ runs-on: ubuntu-24.04
41
+ strategy:
42
+ fail-fast: false
43
+ matrix:
44
+ include:
45
+ - task: shfmt
46
+ name: "Run shfmt"
47
+ command: "shfmt -d ."
48
+ - task: shellcheck
49
+ name: "Run shellcheck"
50
+ command: "shellcheck **/*.sh"
51
+ name: Run ${{ matrix.task }}
52
+ steps:
53
+ - name: Checkout the repository
54
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
55
+ - name: Setup tools
56
+ uses: jdx/mise-action@13abe502c30c1559a5c37dff303831bab82c9402 # v2.2.3
57
+ - name: ${{ matrix.name }}
58
+ run: ${{ matrix.command }}
59
+
60
build:
61
runs-on: ubuntu-24.04
62
strategy:
0 commit comments