cpd_2022_zi/.gitlab-ci.yml

24 lines
281 B
YAML
Raw Normal View History

image: cirrusci/flutter:3.7.5
2023-02-26 17:38:14 +01:00
stages:
- analyze
2023-03-06 19:31:37 +01:00
- test
2023-02-26 17:38:14 +01:00
before_script:
2023-02-26 17:46:40 +01:00
- flutter pub get
- flutter clean
2023-02-26 17:38:14 +01:00
analyze:
stage: analyze
script:
2023-02-26 18:03:00 +01:00
- flutter analyze
2023-02-26 17:46:40 +01:00
only:
- merge_requests
2023-03-06 19:31:37 +01:00
test:
stage: test
script:
- flutter test
only:
- merge_requests