-
Notifications
You must be signed in to change notification settings - Fork 10
54 lines (45 loc) · 1.2 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
53
54
name: Flutter CI
# This workflow is triggered on pull requests to the repository.
on:
pull_request:
branches:
- main
jobs:
analyze:
# This job will run on ubuntu virtual machine
name: Analyze
runs-on: ubuntu-latest
steps:
# Init actions
- name: Start Workflow
uses: actions/checkout@v2
# Setup the flutter environment.
- name: Install Flutter
uses: subosito/flutter-action@v1
with:
channel: "stable"
# Restore packages
- name: Restore packages
run: flutter pub get
# Statically analyze the Dart code for any errors.
- name: Flutter Analyze
run: flutter analyze .
test:
# This job will run on ubuntu virtual machine
name: Test
runs-on: ubuntu-latest
steps:
# Init actions
- name: Start Workflow
uses: actions/checkout@v2
# Setup the flutter environment.
- name: Install Flutter
uses: subosito/flutter-action@v1
with:
channel: "stable"
# Restore packages
- name: Restore packages
run: flutter pub get
# Run tests for flutter project
- name: Flutter Test
run: flutter test