Merge pull request #90 from opxdelwin/dev #158
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: | |
analysis: | |
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' | |
cache: true | |
- run: flutter --version | |
- name: Code Analysis | |
working-directory: client-app | |
run: flutter analyze | |
- name: Unit Testing | |
working-directory: client-app | |
run: flutter test |