Skip to content

chore(deps): bump pigeon from 22.7.4 to 25.3.0 #52

chore(deps): bump pigeon from 22.7.4 to 25.3.0

chore(deps): bump pigeon from 22.7.4 to 25.3.0 #52

Workflow file for this run

name: ✅ Code Quality Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: 🔍 Code Quality and Formatting Verification
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: 📥 Checkout Repository
uses: actions/checkout@v4
- name: 🛠️ Setup Flutter (Stable)
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: 📦 Install Package Dependencies
run: flutter pub get
- name: 📦 Install Example Project Dependencies
run: flutter pub get -C example
- name: 🎨 Perform Flutter Analysis
run: flutter analyze --write=flutter_analyze.log
- if: ${{ !cancelled() }}
uses: yorifuji/flutter-analyze-commenter@v1
with:
analyze-log: flutter_analyze.log
verbose: false
- name: 🔎 Validate Dart Code Formatting
run: dart format --set-exit-if-changed .
- name: 🔄 Preview Potential Dart Fixes
run: dart fix --dry-run
- name: 📦 Verify Package Readiness for Publishing
run: flutter pub publish --dry-run