Skip to content

Commit f23fc2a

Browse files
authored
Merge pull request #188 from opxdelwin/issue-186
[feat] Implemented GH-Actions for static code analysis
2 parents 794f3cf + 2702760 commit f23fc2a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/analyze.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Code Analysis"
2+
on: [ push ]
3+
4+
5+
jobs:
6+
Flutter-Analyze:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- run: pwd
10+
- name: Checkout Code
11+
uses: actions/checkout@v3
12+
13+
- name: Get Flutter Env
14+
uses: subosito/flutter-action@v2
15+
with:
16+
channel: 'stable'
17+
- run: flutter --version
18+
19+
- name: Code Analysis
20+
run: |
21+
flutter pub get
22+
flutter analyze

0 commit comments

Comments
 (0)