-
Notifications
You must be signed in to change notification settings - Fork 6
52 lines (41 loc) · 1.31 KB
/
main.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
name: Flutter CI
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- master
pull_request:
branches:
- master
# on: push & pull request # Default will running for every branch.
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
# Install Protoc
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
channel: "stable" # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
# Install protoc-gen-dart
- run: flutter pub global activate protoc_plugin
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: flutter format --set-exit-if-changed .
# Generate proto stub files
- run: ./build_proto.sh
# Copy the config file
- run: cp config.example.json config.json
# Statically analyze the Dart code for any errors.
- run: flutter analyze .