We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0eb986 commit f46caddCopy full SHA for f46cadd
.github/workflows/main.yml
@@ -22,9 +22,11 @@ jobs:
22
- name: Setup Homebrew
23
id: set-up-homebrew
24
uses: Homebrew/actions/setup-homebrew@master
25
- - name: Setup Dart
26
- id: setup-dart
27
- uses: dart-lang/setup-dart@v1
+ - name: Install Flutter
+ uses: subosito/flutter-action@v2
+ with:
28
+ flutter-version: "3.x"
29
+ channel: "stable"
30
- name: Setup macOS
31
if: runner.os == 'macOS'
32
run: |
@@ -43,6 +45,10 @@ jobs:
43
45
- name: Set environment variable
44
46
47
echo "/opt/homebrew/opt/llvm/bin" >> $GITHUB_PATH
48
+ - name: Flutter pub get
49
+ working-directory: sqlite3
50
+ run: |
51
+ flutter pub get
52
- name: Compile sqlite3.wasm on macOS
53
54
working-directory: sqlite3
0 commit comments