app/.gitlab-ci.yml

16 lines
245 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:
- analyze-and-test
2021-08-15 13:20:24 +02:00
2021-08-15 13:23:37 +02:00
analyze-and-test:
stage: analyze-and-test
2021-08-15 13:20:24 +02:00
script:
2021-08-15 13:23:37 +02:00
- flutter build aot
- flutter analyze
- flutter test
only:
- merge_requests