-
-
Notifications
You must be signed in to change notification settings - Fork 310
70 lines (54 loc) · 1.74 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
name: Build
on: [push, pull_request]
jobs:
build_dart_packages:
runs-on: ubuntu-latest
container:
image: dart:${{ matrix.version }}
strategy:
matrix:
package: ["mobx_codegen", "mobx"]
version: ["stable"]
steps:
- uses: actions/checkout@v3
- name: Install dependencies
working-directory: ${{ matrix.package }}
run: dart pub get
- name: Analyze
working-directory: ${{ matrix.package }}
run: dart analyze --fatal-warnings --fatal-infos .
- name: Run tests
working-directory: ${{ matrix.package }}
run: ../tool/coverage.sh
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.package }}
files: ./${{ matrix.package }}/coverage/lcov.txt
build_flutter_packages:
runs-on: ubuntu-latest
strategy:
matrix:
package: ["flutter_mobx"]
channel: ["stable", "beta"]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
- name: Install dependencies
run: flutter packages get
working-directory: ${{ matrix.package }}
- name: Analyze
run: flutter analyze
working-directory: ${{ matrix.package }}
- name: Run tests
run: flutter test --coverage --coverage-path coverage/lcov.txt
working-directory: ${{ matrix.package }}
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.package }}
files: ./${{ matrix.package }}/coverage/lcov.txt