From de52fe9b93d3767b6df0a250e121167c8da27994 Mon Sep 17 00:00:00 2001 From: Runar Ingebrigtsen Date: Mon, 26 Jan 2026 23:45:27 +0100 Subject: [PATCH] install sqlite in CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3de8c87..dc1e0ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,9 @@ jobs: with: bundler-cache: true + - name: Install SQLite3 CLI + run: sudo apt-get update && sudo apt-get install -y sqlite3 + - name: Set up database env: RAILS_ENV: test @@ -113,6 +116,9 @@ jobs: with: bundler-cache: true + - name: Install SQLite3 CLI + run: sudo apt-get update && sudo apt-get install -y sqlite3 + - name: Set up database env: RAILS_ENV: test