-
Notifications
You must be signed in to change notification settings - Fork 2
69 lines (58 loc) · 1.92 KB
/
Copy pathpost-merge.yaml
File metadata and controls
69 lines (58 loc) · 1.92 KB
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
name: Post-merge
on:
push:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flutter-version: ["3.24.3", "3.27.4", "3.29.3", "3.32.7"]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: "stable"
cache: true
cache-key: flutter-stable-${{ matrix.flutter-version }}-${{ runner.os }}
- name: Disable animations
run: flutter config --no-cli-animations
- name: Load packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run tests
run: |
flutter test --no-pub --coverage --test-randomize-ordering-seed=random
- name: Upload base coverage to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.DUIT_KERNEL_COVERALLS_REPO_TOKEN }}
path-to-lcov: coverage/lcov.info
flag-name: flutter-${{ matrix.flutter-version }}-UNIT
parallel: true
fail-on-error: false
- name: Run warmup test set
run: |
flutter test --no-pub --coverage --dart-define=duit:enable-warm-up=true test/warmup_test.dart
- name: Upload warm-up coverage to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.DUIT_KERNEL_COVERALLS_REPO_TOKEN }}
path-to-lcov: coverage/lcov.info
flag-name: flutter-${{ matrix.flutter-version }}-WUP-UNIT
parallel: true
fail-on-error: false
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finish Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.DUIT_KERNEL_COVERALLS_REPO_TOKEN }}
parallel-finished: true
fail-on-error: false