File tree Expand file tree Collapse file tree 2 files changed +31
-45
lines changed
Expand file tree Collapse file tree 2 files changed +31
-45
lines changed Load Diff This file was deleted.
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 : [ "main" ]
11+ pull_request :
12+ branches : [ "main" ]
13+
14+ jobs :
15+ build :
16+ runs-on : ubuntu-latest
17+
18+ steps :
19+ - uses : actions/checkout@v3
20+ - uses : subosito/flutter-action@v2
21+ - name : Install dependencies
22+ run : flutter pub get
23+
24+ - name : Check code format
25+ run : flutter format . -o none --set-exit-if-changed
26+
27+ - name : Analyze project source
28+ run : flutter analyze --fatal-infos
29+
30+ - name : Run tests
31+ run : flutter test
You can’t perform that action at this time.
0 commit comments