-
Notifications
You must be signed in to change notification settings - Fork 31
54 lines (42 loc) · 1.44 KB
/
dart.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
name: Dart
on:
push:
branches: [ master ]
paths-ignore:
- '**/README.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐦 Setup Flutter SDK
uses: flutter-actions/setup-flutter@v3
with:
channel: stable
version: '3.22.1'
- name: 🛠 Install dependencies
run: flutter pub get
- name: 👨🎨 Validate formatting
run: dart format --set-exit-if-changed lib test
- name: 🕵️♀️ Analyze project source
run: flutter analyze . --fatal-infos
- name: 🧪 Run tests
run: flutter test --coverage
- name: 🎯 Check Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1
- name: 🥇 Update coverage badge
if: github.event_name != 'pull_request'
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
- name: 📈 Check pana
run: |
flutter pub global activate pana
PANA=$(pana . --no-warning); PANA_SCORE=$(echo $PANA | sed -n "s/.*Points: \([0-9]*\)\/\([0-9]*\)./\1\/\2/p")
echo "score: $PANA_SCORE"
IFS='/'; read -a SCORE_ARR <<< "$PANA_SCORE"; SCORE=SCORE_ARR[0]; TOTAL=SCORE_ARR[1]
if (( $SCORE < $TOTAL )); then echo "minimum score not met!"; exit 1; fi