app/.gitlab-ci.yml

18 lines
213 B
YAML
Raw Normal View History

2021-08-15 13:23:37 +02:00
image: cirrusci/flutter:stable
2021-08-15 13:20:24 +02:00
2021-08-15 13:23:37 +02:00
before_script:
- flutter pub get
2021-08-15 13:20:24 +02:00
2021-08-15 13:23:37 +02:00
stages:
2021-08-15 16:31:16 +02:00
- build
- analyze
2021-08-15 13:20:24 +02:00
2021-08-15 16:31:16 +02:00
build:
stage: build
2021-08-15 13:20:24 +02:00
script:
2021-08-15 16:31:16 +02:00
- flutter build apk
analyze:
stage: analyze
script:
- flutter analyze