Skip to content

fix: completely revamp app look #173

fix: completely revamp app look

fix: completely revamp app look #173

Workflow file for this run

name: Deploy Dev
on:
pull_request:
branches:
- dev
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 3.10.0
- name: Install Dependencies
run: flutter pub get
- name: Generate
run: flutter pub run build_runner build --delete-conflicting-outputs
test:
needs: generate
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 3.10.0
- name: Install Dependencies
run: flutter pub get
- name: Generate
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Run Tests
run: flutter test
analyze:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 3.10.0
- name: Install Dependencies
run: flutter pub get
- name: Generate
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Format
run: dart fix --dry-run --apply
- name: Analyze
run: flutter analyze