From 683968f3f7d814276cfad46123349edd569fe5f9 Mon Sep 17 00:00:00 2001 From: Fred Rolland Date: Sun, 29 Sep 2024 13:44:33 +0300 Subject: [PATCH] Add shell checker Signed-off-by: Fred Rolland --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..67e6c1a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Test DOCA Driver Build + +on: [push, pull_request] + +concurrency: + group: ${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + severity: error +