-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (58 loc) · 1.98 KB
/
build.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
69
70
71
72
# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
paths-ignore:
- "**.md"
pull_request:
branches: [main]
paths-ignore:
- "**.md"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
strategy:
matrix:
channel:
# [dev, beta]
- beta
## - stable
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@main
with:
fetch-depth: 2
# - uses: actions/setup-java@v1
# with:
# java-version: "12.x"
# # java-version: ${{ matrix.java }}
# Setup the flutter environment.
- uses: subosito/flutter-action@main
with:
channel: beta
# channel: ${{ matrix.channel }}
# channel: "beta" # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
- name: Add pub cache bin to PATH
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
- name: Add pub cache to ENV
run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV
# Get flutter dependencies.
- run: flutter pub get
# Get example module dependencies.
- run: |
cd example_global_mode && flutter pub get && cd -
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed .
# Statically analyze the Dart code for any errors.
- run: flutter analyze .
# Run widget tests for our flutter project.
# - run: flutter test
- run: |
cd example_global_mode && flutter test && cd -