kind: pipeline name: default steps: - name: test image: google/dart:2 commands: - pub get - dartanalyzer --fatal-infos --fatal-warnings . - dartfmt -n --set-exit-if-changed . - pub run test - name: build image: google/dart:2 commands: - pub publish --dry-run