From 87a8616488461ea7a14f7d75a8711bb38ba8a583 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Wed, 20 Sep 2023 16:21:39 +0000 Subject: [PATCH] gha: Install hunspell for static checks Seems like the static checks are failing due the missing of the hunspell package this PR fixes that. Fixes #8019 Signed-off-by: Gabriela Cervantes --- .github/workflows/static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index ad2d2b7a4c..386d3e41e9 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -187,7 +187,7 @@ jobs: echo "/usr/local/go/bin" >> $GITHUB_PATH - name: Install system dependencies run: | - sudo apt-get -y install moreutils + sudo apt-get -y install moreutils hunspell - name: Run check run: | export PATH=${PATH}:${GOPATH}/bin