Skip to content

Test workflow

Test workflow #14

Workflow file for this run

name: Flutter Checks
on:
workflow_dispatch:
pull_request:
branches: ["main"]
paths:
- '**/*.dart'
jobs:
flutter-check:
name: Flutter Checks
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Flutter Environment
uses: ./.github/actions/flutter-setup
with:
firebase-token: ${{ secrets.FIREBASE_TOKEN }}
- name: Dart Format Check
run: dart format --output=none $(find . -name "*.dart" ! -path "./lib/firebase_options.dart") --set-exit-if-changed
- name: Flutter Analyze
run: flutter analyze