From 4411f981e25a9747e4cdca9786a8301c405bc6b4 Mon Sep 17 00:00:00 2001 From: Vitus Date: Sat, 14 Mar 2020 12:35:37 +0100 Subject: [PATCH] Fix failing SQLite installation process on CI (#283) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d7201b..8a430c44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,9 @@ jobs: working-directory: floor - name: Install SQLite - run: sudo apt-get -y install sqlite3 libsqlite3-dev + run: | + sudo apt-get -y update + sudo apt-get -y install sqlite3 libsqlite3-dev - name: Run tests run: flutter test --coverage --coverage-path coverage/lcov.info