18 lines
No EOL
213 B
YAML
18 lines
No EOL
213 B
YAML
image: cirrusci/flutter:stable
|
|
|
|
before_script:
|
|
- flutter pub get
|
|
|
|
stages:
|
|
- build
|
|
- analyze
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- flutter build apk
|
|
|
|
analyze:
|
|
stage: analyze
|
|
script:
|
|
- flutter analyze |