From 0340f64b238012c07cadf35314897b2d99e8023a Mon Sep 17 00:00:00 2001 From: Nicolas Chan Date: Wed, 3 Mar 2021 23:01:39 -0800 Subject: [PATCH] Add shellcheck check --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73b7e74..443354e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,8 @@ jobs: with: submodules: 'recursive' - - name: Install kcov - run: sudo apt-get install -y kcov + - name: Install kcov and shellcheck + run: sudo apt-get install -y kcov shellcheck - name: Run tests run: test/test.sh @@ -37,4 +37,7 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage/test.sh/cov.xml + + - name: shellcheck + run: shellcheck backup.sh