Merge pull request #188 from opxdelwin/issue-186 #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: "Code Analysis" | |
on: [ push ] | |
jobs: | |
Flutter-Analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- run: pwd | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Get Flutter Env | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter --version | |
- name: Code Analysis | |
run: | | |
flutter pub get | |
flutter analyze |