-
Notifications
You must be signed in to change notification settings - Fork 68
45 lines (36 loc) · 1.17 KB
/
build.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
name: build_and_test
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.24.2"
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
- name: Create blank ..env file
run: touch .env
- name: Get Dependencies
run: flutter pub get
- name: Analyze
run: dart analyze --no-fatal-warnings
- name: Check Formatting
run: dart format lib test --set-exit-if-changed
- name: Run Tests
# TODO: create github action to generate goldens on Linux, and
# remove --update-goldens here so the test fails on changes
run: flutter test --coverage --update-goldens
- name: Check Test Coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: 'coverage/lcov.info'
# This number will fluctuate until the tests touch all code files in the app
min_coverage: 18.3