-
Notifications
You must be signed in to change notification settings - Fork 66
95 lines (87 loc) · 2.72 KB
/
pr.yaml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Pull Requests
on:
pull_request:
push:
branches:
- stable
- beta
- master
jobs:
code_style:
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:stable
steps:
- uses: actions/checkout@v3
- name: Flutter version
run: flutter doctor -v
- name: Download dependencies
run: ./wiresdk deps
- name: Analyze
run: ./wiresdk analyze --fatal-infos --fatal-warnings .
- name: Check formatting
run: ./wiresdk format --verify
pr-min:
runs-on: ubuntu-latest
container:
image: cirrusci/flutter:3.0.0
steps:
- uses: actions/checkout@v3
- name: Flutter version
run: flutter doctor -v
- name: Build
run: cd examples/theming && ./../../wiresdk flutter build web
- name: Download dependencies
run: |
# Override dependencies
printf "dependency_overrides:\n checks: 0.2.2\n meta: 1.9.0\n test_api: 0.4.9" >> pubspec.yaml
# The override syntax does not work with Flutter 3.0
#./wiresdk flutter pub add 'override:checks:0.2.2'
./wiresdk deps
- name: Test
run: ./wiresdk test
pr-stable:
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:stable
if: ${{ github.base_ref != 'beta' || github.base_ref == null && github.ref != 'beta' }}
steps:
- uses: actions/checkout@v3
- name: Flutter version
run: flutter doctor -v
- name: Download dependencies
run: ./wiresdk deps
- name: Test
run: ./wiresdk test
- name: Build
run: cd examples/theming && ./../../wiresdk flutter build web
pr-stable-integration:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Flutter version
run: flutter doctor -v
- name: Download dependencies
run: ./wiresdk deps
- run: cd examples/theming && ./../../wiresdk flutter test -d macos integration_test
pr-beta:
runs-on: ubuntu-latest
container:
image: ghcr.io/cirruslabs/flutter:beta
if: ${{ github.base_ref == 'beta' || github.base_ref == null && github.ref == 'beta' }}
steps:
- uses: actions/checkout@v3
- name: Flutter version
run: flutter doctor -v
- name: Build
run: cd examples/theming && ./../../wiresdk flutter build web
- name: Download dependencies
run: |
# Override dependencies as long as we depend on checks 0.2.2
./wiresdk flutter pub add 'override:test_api:^0.7.0'
./wiresdk deps
- name: Test
run: ./wiresdk test