Skip to content

Commit

Permalink
add analysis workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
opxdelwin committed Feb 24, 2024
1 parent d328a92 commit 2702760
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 2702760

Please sign in to comment.