File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow uses actions that are not certified by GitHub.
2+ # They are provided by a third-party and are governed by
3+ # separate terms of service, privacy policy, and support
4+ # documentation.
5+
6+ name : Dart
7+
8+ on :
9+ push :
10+ branches : [ master ]
11+ pull_request :
12+ branches : [ master ]
13+
14+ jobs :
15+ build :
16+ runs-on : macos-latest
17+ steps :
18+ - uses : actions/checkout@v2
19+ - uses : actions/setup-java@v1
20+ with :
21+ java-version : ' 12.x'
22+ - name : Install Flutter
23+ uses : subosito/flutter-action@v1
24+ with :
25+ flutter-version : ' 2.0.3'
26+ - name : Install dependencies
27+ run : flutter pub get
28+ - name : Run dart analyze
29+ run : dart analyze
30+ - name : run tests
31+ run : flutter test
32+ - name : build example project
33+ working-directory : ./example
34+ run : flutter build ios --release --no-codesign
35+ - name : publish --dry-run
36+ run : flutter pub publish --dry-run
You can’t perform that action at this time.
0 commit comments