-
Notifications
You must be signed in to change notification settings - Fork 25
39 lines (29 loc) · 1.04 KB
/
analyze_code_style.yml
File metadata and controls
39 lines (29 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Analyze Code Style
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
analyze_code_style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Flutter
id: flutter
uses: DanTup/gh-actions/setup-flutter@master
with:
channel: 2.2.2
- name: Install dependencies - Fimber
run: cd fimber && flutter pub get
- name: Analyze project source - Fimber
run: cd fimber && flutter analyze --no-pub --no-fatal-infos --no-fatal-warnings
- name: Install dependencies - Fimber IO
run: cd fimber_io && flutter pub get
- name: Analyze project source - Fimber
run: cd fimber_io && flutter analyze --no-pub --no-fatal-infos --no-fatal-warnings
- name: Install dependencies - Fimber
run: cd flutter_fimber && flutter pub get
- name: Analyze project source - Fimber
run: cd flutter_fimber && flutter analyze --no-pub --no-fatal-infos --no-fatal-warnings