diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..87ebdd09 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2 +jobs: + build: + docker: + - image: cirrusci/flutter + steps: + - checkout + - run: + name: Test + command: flutter test + - run: + name: Analyze + command: flutter analyze