Skip to content

Commit

Permalink
ci: flutter checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevithakannan2 committed Oct 22, 2024
1 parent a7b5e44 commit 65becdf
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Flutter Checks

on:
workflow_dispatch:
pull_request:
branches: ["main"]
paths: |
'**/*.dart'
jobs:
flutter-check:
name: Flutter Checks
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Cache Flutter and Dart dependencies
uses: actions/cache@v4
with:
path: |
~/.pub-cache
~/.flutter
key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.yaml') }}
restore-keys: |
${{ runner.os }}-pub-
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable

- name: Dart Lints
run: dart format --output=none . --set-exit-if-changed

- name: Install Firebase-cli
run: curl -sL https://firebase.tools | bash

- name: Install Flutterfire-cli
run: flutter pub global activate flutterfire_cli 1.0.1-dev.4

- name: Configure Flutterfire
run: flutterfire configure --token ${{ secrets.FIREBASE_TOKEN }} -f -p authentication-699e4 -y --platforms android -a com.codeTrenchers.evBookingUser

- name: Flutter Analyze
run: flutter analyze

0 comments on commit 65becdf

Please sign in to comment.