refactor: Updated class modifiers, added Lottie animations, and reorg… #268
This file contains 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
# This workflow builds, analyzes, and tests every pull request. | |
name: Pull Request Validation | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
pull_request: | |
jobs: | |
analyze-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📚 Git Checkout | |
uses: actions/checkout@v4 | |
- name: ♨️ Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: 🐦 Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }} | |
- name: 🛎️ Checking Flutter Version | |
run: flutter --version | |
- name: 📦 Install Dependencies | |
run: flutter pub get | |
- name: 🛠️ Build Runner (Generate Code) | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: 🕵️ Analyze Code | |
run: flutter analyze lib test | |
- name: 🏗️ Build APK (Production Flavor) | |
run: flutter build apk --release --flavor production -t lib/main_production.dart | |
- name: 🧪 Run Tests | |
run: flutter test |