From 625b3264dd02c0ce791c83e0bd1ab622b4999d34 Mon Sep 17 00:00:00 2001 From: Joel Anderson Date: Thu, 7 Dec 2023 19:16:08 -0500 Subject: [PATCH] add install of sqlite to windows ci --- .github/workflows/windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index be3c9864c..5a47ad0d5 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -15,6 +15,9 @@ jobs: runs-on: "windows-2019" steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - name: Install SQLite + run: | + choco install sqlite - name: Configure run: | cmake -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Debug .