自由帳

@_nibral の技術ブログ

CircleCIでflutter testする

Qiitaからの移転記事です https://qiita.com/nibral/items/93e4052b41c2f477ae2a

ポイント

設定例

version: 2
jobs:
  build:
    environment:
      - LANG: en_US.UTF-8
    docker:
      - image: circleci/android:api-27-alpha
    steps:
      - checkout
      - run:
          name: Install Flutter SDK
          command: git clone -b beta https://github.com/flutter/flutter.git ~/flutter
      - run:
          name: run tests
          command: ~/flutter/bin/flutter test