Skip to content

Commit

Permalink
Fix failing SQLite installation process on CI (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Mar 14, 2020
1 parent 89b0e96 commit 4411f98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4411f98

Please sign in to comment.