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