Skip to content

chore: ignore firebase-debug.log #2

chore: ignore firebase-debug.log

chore: ignore firebase-debug.log #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
analyze:
name: Format · Analyze · Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Check formatting
run: dart format --set-exit-if-changed .
- name: Analyze
run: flutter analyze --fatal-infos
- name: Run tests
run: flutter test --coverage
- name: Check pub score (dry run)
run: flutter pub publish --dry-run