From 37177e15bc64d3795d242706b3e27aaaa409cfd6 Mon Sep 17 00:00:00 2001 From: Moritz Weber Date: Mon, 1 Jun 2020 22:41:33 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2cf31e..71321e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: CI +name: Test and build # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch @@ -13,7 +13,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" - build: + test-and-build: # The type of runner that the job will run on runs-on: ubuntu-latest @@ -27,7 +27,7 @@ jobs: java-version: '12.x' # install sqlite3 - - run: sudo apt-get install sqlite3 + - run: sudo apt-get install libsqlite3-dev - uses: subosito/flutter-action@v1 with: