We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 708bd66 + de4a66d commit 6d4e662Copy full SHA for 6d4e662
.github/workflows/dart.yml
@@ -0,0 +1,30 @@
1
+name: Dart
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Clone repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up Flutter
18
+ uses: subosito/flutter-action@v2.16.0
19
+ with:
20
+ channel: stable
21
+ flutter-version: 3.19.6
22
23
+ - name: Get Flutter packages
24
+ run: flutter pub get
25
26
+ - name: Run Flutter unit tests
27
+ run: flutter test
28
29
+ - name: Build APK (Debug)
30
+ run: flutter build apk --debug
0 commit comments