-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (45 loc) · 1.18 KB
/
leancode_app_rating-test.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
name: leancode_app_rating test
on:
push:
branches: [main]
tags-ignore: ['leancode_app_rating-v*']
paths:
- 'mobile/**'
pull_request:
branches: [main]
paths:
- 'mobile/**'
jobs:
test:
name: Flutter ${{ matrix.channel }}${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- version: 3.24.x
defaults:
run:
working-directory: mobile
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
cache: true
flutter-version: ${{ matrix.version }}
- name: Flutter version
run: flutter --version
- name: Download pub dependencies
run: flutter pub get
- name: Run analyzer
run: |
flutter analyze
- name: Dry run pub publish
# We don't want it to fail the CI, it's just to see how would `pub publish` behave.
run: flutter pub publish --dry-run || true
- uses: codecov/codecov-action@v1
with:
flags: leancode_app_rating