-
-
Notifications
You must be signed in to change notification settings - Fork 3
93 lines (83 loc) · 2.25 KB
/
checkout.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Logger
on:
workflow_dispatch:
push:
branches:
- "master"
- "develop"
- "dev"
- "feature/**"
- "bugfix/**"
- "hotfix/**"
- "support/**"
paths:
- "lib/**.dart"
- "test/**.dart"
- "example/**.dart"
- "pubspec.yaml"
pull_request:
branches:
- "master"
- "develop"
- "dev"
- "feature/**"
- "bugfix/**"
- "hotfix/**"
- "support/**"
paths:
- "lib/**.dart"
- "test/**.dart"
- "example/**.dart"
- "pubspec.yaml"
jobs:
checkout:
name: "Checkout"
runs-on: ubuntu-latest
container:
image: dart:beta
defaults:
run:
working-directory: ./
timeout-minutes: 10
steps:
- name: 🚂 Get latest code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: 🚃 Cache pub modules
uses: actions/cache@v2
env:
cache-name: cache-pub-package
with:
path: |
$PWD/.pub_cache/
key: ${{ runner.os }}-pub-${{ env.cache-name }}-${{ hashFiles('**/pubspec.yaml') }}
- name: 🗄️ Export pub cache directory
run: export PUB_CACHE=$PWD/.pub_cache/
- name: 👷 Install Dependencies
timeout-minutes: 1
run: |
dart pub get -C .
- name: 🔎 Check format
timeout-minutes: 1
run: dart format --set-exit-if-changed -l 80 -o none lib/
- name: 📈 Check analyzer
timeout-minutes: 1
run: dart analyze --fatal-infos --fatal-warnings lib/
#- name: Check with pana
# run: dart pub global activate pana && pana --json --no-warning --line-length 80
- name: 🧪 Run tests
run: |
dart test --coverage=coverage \
&& dart run coverage:format_coverage --lcov --in=coverage \
--out=coverage/lcov.info --report-on=lib
- name: 📥 Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: 🧮 Check Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1.2.1
with:
path: coverage/lcov.info
min_coverage: 90
#exclude: '**.g.dart **.freezed.dart'