From 1874f10a7f7d9a44f4bb59f7eea499b36078aa81 Mon Sep 17 00:00:00 2001 From: becooq81 Date: Thu, 16 May 2024 14:53:56 +0900 Subject: [PATCH] fix(github action): treat warnings/info as nonfatal --- .github/workflows/flutter.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/flutter.yml b/.github/workflows/flutter.yml index 557ba83..f7eeb23 100644 --- a/.github/workflows/flutter.yml +++ b/.github/workflows/flutter.yml @@ -5,14 +5,6 @@ on: - '*' branches: - delta - workflow_dispatch: - inputs: - logLevel: - description: 'Log level' - required: true - default: 'warning' - tags: - description: 'Test scenario tags' jobs: build: @@ -31,7 +23,7 @@ jobs: - name: Install dependencies run: flutter pub get - name: Analyze project source - run: dart analyze + run: dart analyze --fatal-warnings=false - name: Run tests run: flutter test --no-test-assets --disable-service-auth-codes --coverage - name: Build APK