Skip to content

Commit 2b686f7

Browse files
committed
feat: add analyzer action
1 parent c44a356 commit 2b686f7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/analyzer.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Dart Analyzer
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
analyze:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: subosito/flutter-action@v2
12+
with:
13+
channel: stable
14+
- run: flutter pub get
15+
- run: flutter pub global activate melos
16+
- run: melos bootstrap
17+
- uses: invertase/github-action-dart-analyzer@v1

0 commit comments

Comments
 (0)