We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54596b9 commit 958d143Copy full SHA for 958d143
.github/workflows/dart.yml
@@ -0,0 +1,31 @@
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
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
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
0 commit comments