Resolve #103, #110, #114. implement review app bar, implement like cancel, resolve bug: pixel overflow, translate, text alignment, design enhancement #329
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
FLUTTER_VERSION: "3" | |
jobs: | |
lint: | |
name: Format and Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
channel: "stable" | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Format | |
run: dart format . --set-exit-if-changed | |
- name: Analyze | |
run: flutter analyze |