Skip to content

feat: release v2.0.0 — Dart 3, Flutter 3.27 compat, bug fixes, CI/CD #2

feat: release v2.0.0 — Dart 3, Flutter 3.27 compat, bug fixes, CI/CD

feat: release v2.0.0 — Dart 3, Flutter 3.27 compat, bug fixes, CI/CD #2

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
name: Analyze & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.x'
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze
run: flutter analyze --fatal-infos
- name: Run tests
run: flutter test --coverage
- name: Check pub score
run: dart pub publish --dry-run