Skip to content

Commit 3b8b2f7

Browse files
committed
chore: disable cache in unit test
1 parent d7a40d7 commit 3b8b2f7

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/flutter_ci.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
path: appflowy_flutter.tar.gz
131131

132132
unit_test:
133-
needs: [prepare]
133+
# needs: [prepare]
134134
if: github.event.pull_request.draft != true
135135
strategy:
136136
fail-fast: false
@@ -181,17 +181,12 @@ jobs:
181181
fi
182182
shell: bash
183183

184-
- uses: actions/download-artifact@v3
185-
with:
186-
name: ${{ github.run_id }}-${{ matrix.os }}
187-
188-
- name: Uncompress appflowy_flutter
189-
run: tar -xf appflowy_flutter.tar.gz
190-
191184
- name: Run Flutter unit tests
192185
working-directory: frontend
193186
run: |
194187
if [ "$RUNNER_OS" == "macOS" ]; then
188+
flutter config --enable-macos-desktop
189+
cargo make --profile ${{ matrix.flutter_profile }} appflowy-dev
195190
cargo make dart_unit_test
196191
else
197192
cargo make dart_unit_test_no_build

0 commit comments

Comments
 (0)