fix: back button closing the app from any page #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analyze Code | |
on: | |
push: | |
branches: [ "dev" ] | |
paths: | |
- "**.dart" | |
- ".github/workflows/analyze.yml" | |
pull_request: | |
branches: [ "main", "dev" ] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths: | |
- "**.dart" | |
- ".github/workflows/analyze.yml" | |
jobs: | |
build: | |
name: "Static analysis & format check" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: Install Flutter dependencies | |
run: flutter pub get | |
- name: Generate files with Builder | |
run: flutter packages pub run build_runner build --delete-conflicting-outputs | |
- name: Analyze code | |
uses: ValentinVignal/action-dart-analyze@v0.15 | |
with: | |
fail-on: warning |