Skip to content

fix(#14) : fixed log out issue #9

fix(#14) : fixed log out issue

fix(#14) : fixed log out issue #9

Workflow file for this run

name: Deploy Dev
on:
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: 3.7.12
- name: Install Dependencies
run: flutter pub get
- name: Run Tests
run: flutter test
analyze:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: 3.7.12
- name: Install Dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze