mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2024-11-07 06:33:38 +01:00
Issue 429: analyse/lint and format script
👷 add a fancy GitHub action for 'shellcheck' and 'shfmt' 👷 moved 'shellcheck' and 'check indentation' to new GitHub Action 🚨 fix 'shellcheck' warnings 🚨 fix 'shfmt' warnings
This commit is contained in:
parent
b68ebe67f2
commit
f422c8f512
40
.github/workflows/check.yml
vendored
40
.github/workflows/check.yml
vendored
@ -1,27 +1,35 @@
|
||||
name: CI
|
||||
name: Shellcheck, Shfmt and execution test
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
# Run workflow on every push
|
||||
# only if a file within the specified paths has been changed:
|
||||
- '*.sh'
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
sh-checker:
|
||||
name: Shfmt Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Run the sh-checker
|
||||
uses: luizm/action-sh-checker@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
SHELLCHECK_OPTS: -e SC1091,SC1090 # exclude some shellcheck warnings.
|
||||
SHFMT_OPTS: -s # arguments to shfmt.
|
||||
with:
|
||||
sh_checker_comment: true
|
||||
|
||||
check-execution:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: install prerequisites
|
||||
run: sudo apt-get update && sudo apt-get install -y shellcheck jq sqlite3 iucode-tool
|
||||
- name: shellcheck
|
||||
run: shellcheck -s sh spectre-meltdown-checker.sh
|
||||
- name: check indentation
|
||||
run: |
|
||||
if [ $(grep -cPv "^\t*\S|^$" spectre-meltdown-checker.sh) != 0 ]; then
|
||||
echo "Badly indented lines found:"
|
||||
grep -nPv "^\t*\S|^$" spectre-meltdown-checker.sh
|
||||
exit 1
|
||||
else
|
||||
echo "Indentation seems correct."
|
||||
fi
|
||||
run: sudo apt-get update && sudo apt-get install -y jq sqlite3 iucode-tool
|
||||
- name: check direct execution
|
||||
run: |
|
||||
expected=15
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user