From 77ae477736f1dbf4c39b552a7d02b53176560eac Mon Sep 17 00:00:00 2001 From: Thomas Schmidt Date: Thu, 9 Jan 2025 17:55:05 +0100 Subject: [PATCH] install libsqlite3-dev --- .github/workflows/lint-unit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-unit.yml b/.github/workflows/lint-unit.yml index e97009ec4..670167ca5 100644 --- a/.github/workflows/lint-unit.yml +++ b/.github/workflows/lint-unit.yml @@ -52,6 +52,8 @@ jobs: --health-retries=3 steps: + - name: Install dependencies + run: sudo apt-get install -y libsqlite3-dev - uses: actions/checkout@v4 # Run bundle install and cache the installed gems @@ -96,4 +98,4 @@ jobs: run: | echo "::group::Version verification checks" ruby ci/check-version-matches.rb - echo "::endgroup::" \ No newline at end of file + echo "::endgroup::"