-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (41 loc) · 1.14 KB
/
build_and_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
name: build_and_test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
device:
- "ubuntu"
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.10.6"
channel: "stable"
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
architecture: x64
- name: Get Dependencies
run: flutter pub get
- name: Analyze
run: dart analyze lib --no-fatal-warnings
- name: Check Formatting
run: dart format lib --set-exit-if-changed
- name: Run Tests
run: flutter test --coverage --update-goldens
- name: Check Test Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0
with:
path: "coverage/lcov.info"
min_coverage: 100
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}