Skip to content

feat: optimize page-turn animations (simulation + cover) - reduce all… #28

feat: optimize page-turn animations (simulation + cover) - reduce all…

feat: optimize page-turn animations (simulation + cover) - reduce all… #28

Workflow file for this run

# Continuous check — analyze + unit tests (no APK).
name: CI
on:
push:
branches: [master, main, ai_refactor]
paths-ignore:
- '**.md'
- 'docs/**'
pull_request:
branches: [master, main]
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze & Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
# Match project target (Dart 3.12 / Flutter 3.44).
flutter-version: '3.44.0'
channel: 'stable'
cache: true
- name: Flutter version
run: flutter --version
- name: Pub get
run: flutter pub get
- name: Analyze
run: flutter analyze --no-fatal-infos
- name: Test
run: flutter test