cpd_2022_zi/.gitlab-ci.yml

24 lines
281 B
YAML

image: cirrusci/flutter:3.7.5
stages:
- analyze
- test
before_script:
- flutter pub get
- flutter clean
analyze:
stage: analyze
script:
- flutter analyze
only:
- merge_requests
test:
stage: test
script:
- flutter test
only:
- merge_requests