-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (58 loc) · 1.78 KB
/
main.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: responsive_notebook_background
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache asdf
uses: actions/cache@v4
id: asdf_cache
with:
path: ~/.asdf/
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
- uses: asdf-vm/actions/install@v3
- name: Cache flutter dependencies
uses: actions/cache@v4
id: flutter_cache
with:
path: .dart_tool/
key: ${{ runner.os }}-${{ hashFiles('**/pubspec.lock') }}
- name: Install dependencies
run: flutter pub get
- name: Format code
run: dart format --set-exit-if-changed .
- name: Analyze code
run: flutter analyze
- name: Run code metrics
run: dart run dart_code_linter:metrics analyze . --set-exit-on-violation-level=warning
pana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache asdf
uses: actions/cache@v4
id: asdf_cache
with:
path: ~/.asdf/
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
- uses: asdf-vm/actions/install@v3
- name: Install WebP
run: |
sudo apt update
sudo apt install webp
- name: Cache flutter dependencies
uses: actions/cache@v4
id: flutter_cache
with:
path: |
.dart_tool/
~/.pub-cache/
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
echo $GITHUB_PATH:$HOME/.pub-cache/bin >> $GITHUB_PATH
flutter pub global activate pana
- name: Verify Pub Score
run: ./tool/verify_pub_score.sh