Skip to content

Commit 6d4e662

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 708bd66 + de4a66d commit 6d4e662

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/dart.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Dart
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
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

Comments
 (0)