Skip to content

Commit

Permalink
fix(github action): treat warnings/info as nonfatal
Browse files Browse the repository at this point in the history
  • Loading branch information
becooq81 committed May 16, 2024
1 parent 6800535 commit 1874f10
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 1874f10

Please sign in to comment.