From f4c850d7d0e452400e3f871588fa7841c683f265 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 17 Sep 2020 14:17:25 +0200 Subject: [PATCH] ci: enable ShellCheck warnings Enable ShellCheck at the warning level. --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0680718..5b9b387 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,14 @@ jobs: pytest --cov-report=xml --cov=osbuild test/unit/ - name: Send coverage to codecov.io run: bash <(curl -s https://codecov.io/bash) + + shellcheck: + name: "Shellcheck" + runs-on: ubuntu-latest + steps: + - name: "Clone Repository" + uses: actions/checkout@v2 + - name: "Run ShellCheck" + uses: ludeeus/action-shellcheck@0.5.0 + with: + severity: warning