Skip to content

Commit

Permalink
Create check_admin_app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhaev26 authored Jan 14, 2024
1 parent 9d07638 commit dcba372
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/check_admin_app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ADMIN FLUTTER APP BUILD

on:
push:
branches:
- main
- dev/app

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.1'

- name: Set up working directory
run: cd apps/admin

- name: Install dependencies
run: flutter pub get

- name: Run tests
run: flutter test

- name: Build APK
run: flutter build apk

0 comments on commit dcba372

Please sign in to comment.