15 lines
234 B
YAML
15 lines
234 B
YAML
|
image: matspfeiffer/flutter:latest
|
||
|
|
||
|
stages:
|
||
|
- analyze
|
||
|
|
||
|
before_script:
|
||
|
— flutter pub get
|
||
|
— flutter clean
|
||
|
|
||
|
analyze:
|
||
|
stage: analyze
|
||
|
script:
|
||
|
- flutter analyze --no-fatal-infos --no-fatal-warnings
|
||
|
only:
|
||
|
— merge_requests
|