From e46798959e10e4674b2a58a9c2f227c0a2deca1d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 3 Feb 2022 22:06:23 -0800 Subject: [PATCH] Looks like Actions if: clauses prefer single quotes Refs #395, #79 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3bd21f1..a8274e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: if: matrix.numpy == 1 run: pip install numpy - name: Install SpatiaLite - if: matrix.os == "ubuntu-latest" + if: matrix.os == 'ubuntu-latest' run: sudo apt-get install libsqlite3-mod-spatialite - name: Run tests run: |