File tree Expand file tree Collapse file tree 2 files changed +31
-42
lines changed
Expand file tree Collapse file tree 2 files changed +31
-42
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 : Flutter
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@v4
20+ - uses : dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
21+ - uses : Clean flutter
22+ run : flutter clean
23+ - name : Install dependencies
24+ run : flutter pub get
25+ - name : Analyze project source
26+ run : flutter analyze
27+ - name : Run tests
28+ run : flutter test
29+ - name : Check Flutter
30+ run : flutter doctor -v
31+
You can’t perform that action at this time.
0 commit comments