From 89d9fc862aaa2216687c4333b0ac8b32723ab6cf Mon Sep 17 00:00:00 2001 From: Ashish Kulkarni Date: Wed, 22 Dec 2021 20:31:58 +0530 Subject: [PATCH] install aspell-en to fix build failures --- .github/workflows/checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4d74b36..85f18d3 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -18,5 +18,7 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true + - name: install en dictionaries + run: sudo apt-get install -y aspell-en - name: rake spec run: bundle exec rake spec