-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (44 loc) · 1.18 KB
/
working_branch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: working branch workflow
on:
push:
branches:
- '*'
# - '!develop'
- '!main'
jobs:
analysis:
name: format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.3'
channel: 'stable'
architecture: x64
# - name: Check Code Format
# run: dart format . --set-exit-if-changed
- name: Analyze code
run: dart analyze .
build:
runs-on: ubuntu-latest
steps:
- name : Checkout Repo
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: '12.x'
- name : Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.3'
channel: 'stable'
architecture: x64
- name: Flutter Pub get
run : |
echo flutter clean
echo flutter pub get
# - name : Build Apk
# run: flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi