Skip to content

Commit

Permalink
Merge pull request #188 from opxdelwin/issue-186
Browse files Browse the repository at this point in the history
[feat] Implemented GH-Actions for static code analysis
  • Loading branch information
ashitaprasad authored Feb 26, 2024
2 parents 794f3cf + 2702760 commit f23fc2a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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

0 comments on commit f23fc2a

Please sign in to comment.