We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8900c2 commit ebacb27Copy full SHA for ebacb27
1 file changed
.github/workflows/flutter_ci.yml
@@ -0,0 +1,32 @@
1
+name: Flutter CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ flutter-ci:
11
+ name: Flutter CI (Latest Stable)
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Set up Flutter (latest stable)
18
+ uses: subosito/flutter-action@v2
19
+ with:
20
+ channel: stable
21
22
+ - name: Install dependencies
23
+ run: flutter pub get
24
25
+ - name: Format check
26
+ run: dart format . --output=none
27
28
+ - name: Analyze (fail on deprecated usage)
29
+ run: flutter analyze --fatal-infos
30
31
+ - name: Run tests
32
+ run: flutter test
0 commit comments