From e8072b5c9ed8ee1252434da1cafe67763d3a18cb Mon Sep 17 00:00:00 2001 From: Daniel Coyula Date: Tue, 23 Jan 2024 14:48:01 -0500 Subject: [PATCH] Run Flutter tests on CI workflow --- .github/workflows/flutter_ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutter_ci.yml b/.github/workflows/flutter_ci.yml index 0299e52..c75b500 100644 --- a/.github/workflows/flutter_ci.yml +++ b/.github/workflows/flutter_ci.yml @@ -1,4 +1,4 @@ -name: Flutter Code Quality +name: Flutter Code Quality and Testing # Controls when the workflow will run on: @@ -39,6 +39,9 @@ jobs: - name: Get dependencies run: flutter pub get + - name: Run Flutter tests + run: flutter test + - name: Lint analysis run: flutter analyze