Skip to content

fix: flutter analyze issues #6

fix: flutter analyze issues

fix: flutter analyze issues #6

Workflow file for this run

name: Lint & Analyze
on:
pull_request:
branches:
- main
jobs:
lint-analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: flutter-actions/setup-flutter@v3
with:
channel: stable
version: 3.24.3
cache-sdk: true
- run: flutter pub get
- run: dart format --set-exit-if-changed .
- run: cp ./lib/env.dart.example ./lib/env.dart
- run: flutter pub run build_runner build
- run: flutter analyze