forked from paradedb/paradedb
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (40 loc) · 1.2 KB
/
lint-bash.yml
File metadata and controls
51 lines (40 loc) · 1.2 KB
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
# workflows/lint-bash.yml
#
# Lint Bash
# Lint and enforce good practices for Bash scripts.
name: Lint Bash
on:
pull_request:
paths:
- "**/*.sh"
- ".github/workflows/lint-bash.yml"
workflow_dispatch:
concurrency:
group: lint-bash-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint-bash:
name: Lint Bash Scripts
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/checkout@v4
- name: Set up Python Environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Beautysh
run: pip install beautysh
- name: Run Beautysh
run: |
shopt -s globstar nullglob
if compgen -G "**/*.sh" > /dev/null; then
beautysh **/*.sh --indent-size 2 --check
fi
shopt -u globstar nullglob
- name: Check Bash Scripts for "#!/bin/bash"
run: .github/workflows/helpers/check_shebang.sh
- name: Check Bash Scripts for "set -Eeuo pipefail"
run: .github/workflows/helpers/check_pipefail.sh
- name: Run ShellCheck
run: python3 .github/workflows/helpers/check_shellcheck.py