Skip to content

Commit f46cadd

Browse files
committed
Get flutter dependencies
1 parent b0eb986 commit f46cadd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ jobs:
2222
- name: Setup Homebrew
2323
id: set-up-homebrew
2424
uses: Homebrew/actions/setup-homebrew@master
25-
- name: Setup Dart
26-
id: setup-dart
27-
uses: dart-lang/setup-dart@v1
25+
- name: Install Flutter
26+
uses: subosito/flutter-action@v2
27+
with:
28+
flutter-version: "3.x"
29+
channel: "stable"
2830
- name: Setup macOS
2931
if: runner.os == 'macOS'
3032
run: |
@@ -43,6 +45,10 @@ jobs:
4345
- name: Set environment variable
4446
run: |
4547
echo "/opt/homebrew/opt/llvm/bin" >> $GITHUB_PATH
48+
- name: Flutter pub get
49+
working-directory: sqlite3
50+
run: |
51+
flutter pub get
4652
- name: Compile sqlite3.wasm on macOS
4753
if: runner.os == 'macOS'
4854
working-directory: sqlite3

0 commit comments

Comments
 (0)