diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17ec621d..835de8eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,13 @@ jobs: steps: - name: Checkout the repo uses: actions/checkout@v2 + - name: Install sqlite3 on Ubuntu + if: matrix.os == 'ubuntu-20.04' + shell: bash + run: | + sudo apt update + sudo apt install sqlite3 + - name: Install msys2 if: matrix.os == 'windows-latest' uses: msys2/setup-msys2@v2 @@ -25,6 +32,7 @@ jobs: msystem: MINGW64 update: true install: git mingw-w64-x86_64-toolchain libsqlite + - name: Validate Gradle Wrapper uses: gradle/wrapper-validation-action@v1 - name: Cache gradle