Browse Source

Add shellcheck to quality checks

pull/3008/head
Benoit Marty 3 months ago
parent
commit
e0da4d6bf0
  1. 12
      .github/workflows/quality.yml

12
.github/workflows/quality.yml

@ -187,6 +187,18 @@ jobs: @@ -187,6 +187,18 @@ jobs:
- name: Run Knit
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:
name: Project Check Suite
runs-on: ubuntu-latest

Loading…
Cancel
Save