new file: .circleci/config.yaml

This commit is contained in:
stonegate 2020-02-13 11:18:56 +08:00
parent 0d1d8a9222
commit 024c25754a
1 changed files with 26 additions and 0 deletions

26
.circleci/config.yaml Normal file
View File

@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: cirrusci/flutter:v1.13.6
branches:
only: master
steps:
- checkout
- run:
name: Run Flutter doctor
command: flutter doctor
- run:
name: Run the application tests
command: flutter test
- run:
name: Build the Android version
command: flutter build apk
- store_artifacts:
path: build/app/outputs/apk/release/app-release.apk