File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,15 @@ jobs:
81
81
uses : subosito/flutter-action@v2
82
82
with :
83
83
cache : true
84
- - name : Set file permissions
84
+ - name : Set file permissions on Ubuntu and MacOS
85
+ if : matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
85
86
run : chmod +x tools/flutter-dependencies.sh
86
- - name : Install dependencies
87
+ - name : Install dependencies on Ubuntu and MacOS
88
+ if : matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
87
89
run : tools/flutter-dependencies.sh
90
+ - name : Install dependencies on Windows
91
+ if : matrix.os == 'windows-latest'
92
+ run : tools/flutter-dependencies.bat
88
93
- name : Run tests
89
94
run : (cd packages/flutter && flutter test --coverage)
90
95
- name : Convert code coverage
Original file line number Diff line number Diff line change
1
+ cd packages/dart
2
+ flutter pub get
3
+ cd ../..
4
+ cd packages/flutter
5
+ flutter pub remove parse_server_sdk
6
+ flutter pub add parse_server_sdk --path ../dart
7
+ flutter pub get
You can’t perform that action at this time.
0 commit comments