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.
1 parent 5de8498 commit 833045eCopy full SHA for 833045e
.github/workflows/flutter.yml
@@ -0,0 +1,26 @@
1
+name: Flutter
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - uses: actions/setup-java@v1
16
+ with:
17
+ java-version: '12.x'
18
+ - uses: subosito/flutter-action@v1
19
20
+ channel: 'beta'
21
+ - run: dart --version
22
+ - run: flutter --version
23
+ - run: flutter pub get
24
+ - run: flutter packages pub run build_runner build --delete-conflicting-outputs
25
+ - run: flutter build apk
26
0 commit comments