Skip to content

Issue 28- Material Menu (List) Page and pdfViewer Page #41

Issue 28- Material Menu (List) Page and pdfViewer Page

Issue 28- Material Menu (List) Page and pdfViewer Page #41

Workflow file for this run

name: analyzer
on:
pull_request:
branches:
- main
- development
paths:
- app/**
push:
branches:
- main
- development
paths:
- app/**
jobs:
flutter_analyze:
name: Run flutter analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v1
with:
channel: "stable"
flutter-version: '3.13.0'
- run: |
cd app
echo "${{ secrets.ENV_FILE }}" > .env
flutter doctor
flutter pub get
flutter pub run build_runner build
flutter analyze