From e948a23c5563d54319bf5124dd290f8d9f55de4b Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 2 Feb 2019 17:52:42 +0100 Subject: [PATCH] Add CircleCI config --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .circleci/config.yml 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