enable elective preference #13
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: | |
setup: | |
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: | | |
cd client-app | |
flutter pub get | |
flutter analyze |