Skip to content

Commit c188029

Browse files
authored
fix: rust & flutter test (#1644)
Co-authored-by: nathan <[email protected]>
1 parent 0e88d64 commit c188029

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/flutter_ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ jobs:
101101
working-directory: frontend/app_flowy
102102
run: flutter analyze
103103

104-
#Just run one platform
105104
- if: "$RUNNER_OS" == "Linux"
106105
name: Build Flutter unit test lib
107106
working-directory: frontend

.github/workflows/rust_ci.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
env:
2121
CARGO_TERM_COLOR: always
2222
RUST_TOOLCHAIN: "1.65"
23+
FLUTTER_VERSION: "3.3.9"
2324

2425
jobs:
2526
test-on-ubuntu:
@@ -37,6 +38,14 @@ jobs:
3738
components: rustfmt, clippy
3839
profile: minimal
3940

41+
- name: Install flutter
42+
id: flutter
43+
uses: subosito/flutter-action@v2
44+
with:
45+
channel: "stable"
46+
flutter-version: ${{ env.FLUTTER_VERSION }}
47+
cache: true
48+
4049
- name: Install prerequisites
4150
working-directory: frontend
4251
run: |

0 commit comments

Comments
 (0)