2022-02-19 15:19:33 +00:00
|
|
|
name: Unit test(Flutter)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- uses: subosito/flutter-action@v1
|
|
|
|
with:
|
|
|
|
channel: "stable"
|
2022-02-19 15:26:38 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
- name: Deps Rust
|
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
cargo install --force cargo-make
|
|
|
|
cargo install --force duckscript_cli
|
|
|
|
cargo make flowy_dev
|
|
|
|
echo PATH="$PATH":"$HOME/.pub-cache/bin" >> $GITHUB_PATH
|
|
|
|
- name: Deps Flutter
|
2022-02-19 23:08:42 +00:00
|
|
|
run: flutter pub get
|
|
|
|
working-directory: frontend/app_flowy
|
|
|
|
- name: Code Generate
|
2022-02-19 15:19:33 +00:00
|
|
|
working-directory: frontend/app_flowy
|
2022-02-23 13:32:53 +00:00
|
|
|
run: |
|
|
|
|
flutter pub run easy_localization:generate -S ./assets/translations -f keys -O lib/generated -o locale_keys.g.dart
|
|
|
|
sed -i '/generate: true/s/true/false/g' pubspec.yaml
|
|
|
|
flutter pub get
|
|
|
|
flutter packages pub run build_runner build --delete-conflicting-outputs
|
2022-02-19 15:19:33 +00:00
|
|
|
- name: Build FlowySDK
|
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
flutter config --enable-linux-desktop
|
|
|
|
cargo make --profile development-linux-x86 flowy-sdk-dev
|
2022-02-19 23:22:39 +00:00
|
|
|
- name: Run bloc tests
|
2022-02-19 15:19:33 +00:00
|
|
|
working-directory: frontend/app_flowy
|
|
|
|
run: |
|
|
|
|
flutter test
|
|
|
|
|