Skip to content

fdojebnf

fdojebnf #5

name: Flutter Analyze
on:
push:
branches: [ production ]
pull_request:
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.32.0
- name: Install dependencies
run: flutter pub get
- name: Generate code
run: dart run build_runner build --delete-conflicting-outputs
- name: Static analysis (treat warnings as errors)
run: flutter analyze --no-fatal-infos --fatal-warnings