From 4ffecd641dec6765ebeb1070d94b8ace9a2d03fc Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 13 Jul 2021 12:24:30 -0500 Subject: [PATCH] Check for bashisms in install script --- .github/workflows/scripts.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml index 47df18d6..7b12147b 100644 --- a/.github/workflows/scripts.yml +++ b/.github/workflows/scripts.yml @@ -20,8 +20,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 - - name: Install bats - run: apk add bats + - name: Install test utilities + run: apk add bats checkbashisms + + - name: Check Bashisms + run: checkbashisms ./install.sh - name: Run script unit tests run: ./ci/dev/test-scripts.sh -- GitLab