From 749418728448abbbfa6305ad18152951a6721670 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 3 Feb 2022 22:05:12 -0800 Subject: [PATCH] Only install SpatiaLite on Ubuntu, refs #395 For tests added to #79 --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d66dbb..3bd21f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,6 +33,7 @@ jobs: if: matrix.numpy == 1 run: pip install numpy - name: Install SpatiaLite + if: matrix.os == "ubuntu-latest" run: sudo apt-get install libsqlite3-mod-spatialite - name: Run tests run: |