Add shellcheck to quality checks
This commit is contained in:
parent
e2aa84804d
commit
e8555d2ea7
1 changed files with 12 additions and 0 deletions
12
.github/workflows/quality.yml
vendored
12
.github/workflows/quality.yml
vendored
|
|
@ -187,6 +187,18 @@ jobs:
|
||||||
- name: Run Knit
|
- name: Run Knit
|
||||||
run: ./gradlew knitCheck $CI_GRADLE_ARG_PROPERTIES
|
run: ./gradlew knitCheck $CI_GRADLE_ARG_PROPERTIES
|
||||||
|
|
||||||
|
# Note: to auto fix issues you can use the following command:
|
||||||
|
# shellcheck -f diff <files> | git apply
|
||||||
|
shellcheck:
|
||||||
|
name: Check shell scripts
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Run shellcheck
|
||||||
|
uses: ludeeus/action-shellcheck@2.0.0
|
||||||
|
with:
|
||||||
|
scandir: ./tools
|
||||||
|
|
||||||
upload_reports:
|
upload_reports:
|
||||||
name: Project Check Suite
|
name: Project Check Suite
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue