We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2288ce7 commit cd30fb7Copy full SHA for cd30fb7
.github/workflows/build.yml
@@ -13,16 +13,15 @@ jobs:
13
steps:
14
- uses: actions/checkout@v2
15
- uses: dart-lang/setup-dart@v1
16
+ - uses: subosito/flutter-action@v1
17
+ with:
18
+ channel: 'stable'
19
20
- name: Install dependencies
21
run: flutter pub get
22
- # Consider passing '--fatal-infos' for slightly stricter analysis.
23
- name: Analyze project source
- run: dart analyze --fatal-infos
24
+ run: flutter analyze --fatal-infos
25
- # Your project will need to have tests in test/ and a dependency on
- # package:test for this step to succeed. Note that Flutter projects will
26
- # want to change this to 'flutter test'.
27
- name: Run tests
28
run: flutter test
0 commit comments