feat: optimize page-turn animations (simulation + cover) - reduce all… #28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |