12 lines
236 B
YAML
12 lines
236 B
YAML
pipeline:
|
|
lint:
|
|
image: dart:3.0.7
|
|
commands:
|
|
- dart pub --verbose get --no-precompile
|
|
- dart analyze --fatal-infos --fatal-warnings
|
|
test:
|
|
image: dart:3.0.7
|
|
commands:
|
|
- dart pub get
|
|
- dart test
|