From a3f3415dd197b5393af66f3d0833b01aabebaacc Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Tue, 7 Jan 2025 08:36:43 -0800 Subject: [PATCH] Install libsqlite3-dev in CI, hopefully fixes Ruby 2.0-2.4 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0697f38..61fc56e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: BUNDLE_GEMFILE: .ci.gemfile steps: - uses: actions/checkout@v4 + - run: sudo apt-get -yqq install libsqlite3-dev - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}