AppFlowy/.github/workflows/dart_test.yml

75 lines
1.9 KiB
YAML
Raw Normal View History

2022-02-19 15:19:33 +00:00
name: Unit test(Flutter)
on:
push:
branches:
- 'main'
2022-02-19 15:19:33 +00:00
pull_request:
branches:
- 'main'
2022-02-19 15:19:33 +00:00
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-02-19 15:26:38 +00:00
- uses: actions-rs/toolchain@v1
with:
toolchain: 'stable-2022-01-20'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Cache Cargo
uses: actions/cache@v2
with:
path: |
~/.cargo
key: ${{ runner.os }}-cargo-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
- name: Cache Rust
uses: actions/cache@v2
with:
path: |
frontend/rust-lib/target
shared-lib/target
key: ${{ runner.os }}-rust-rust-lib-share-lib-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
2022-02-24 09:08:31 +00:00
- name: Deps Flutter
working-directory: frontend/app_flowy
2022-02-25 03:37:14 +00:00
run: |
flutter config --enable-linux-desktop
2022-02-19 15:26:38 +00:00
- name: Deps Rust
working-directory: frontend
run: |
cargo install cargo-make
cargo install duckscript_cli
2022-02-19 15:26:38 +00:00
cargo make flowy_dev
2022-02-24 07:40:48 +00:00
- name: Code Generation
2022-02-19 15:19:33 +00:00
working-directory: frontend/app_flowy
2022-02-23 13:32:53 +00:00
run: |
2022-02-25 03:37:14 +00:00
flutter packages pub get
2022-04-28 13:18:42 +00:00
flutter packages pub run easy_localization:generate -f keys -o locale_keys.g.dart -S assets/translations -s en.json
2022-02-23 13:32:53 +00:00
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: |
cargo make --profile development-linux-x86 flowy-sdk-dev
- name: Run bloc tests
2022-02-19 15:19:33 +00:00
working-directory: frontend/app_flowy
run: |
2022-02-25 03:37:14 +00:00
flutter pub get
2022-02-19 15:19:33 +00:00
flutter test