-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (46 loc) · 1.35 KB
/
main.yaml
File metadata and controls
51 lines (46 loc) · 1.35 KB
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
name: cosee_lints
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
pana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup asdf
uses: asdf-vm/actions/setup@v4
- name: Cache asdf
uses: actions/cache@v4
with:
path: |
~/.asdf/installs
~/.asdf/plugins
~/.asdf/shims
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}
restore-keys: ${{ runner.os }}-asdf-
- name: Install asdf
uses: asdf-vm/actions/install@v4
# See https://github.com/asdf-vm/actions/issues/445
if: steps.cache-asdf.outputs.cache-hit != 'true'
- name: Reshim asdf
run: asdf reshim
- name: Cache dart dependencies
uses: actions/cache@v4
with:
path: |
.dart_tool/
~/.pub-cache/
key: ${{ runner.os }}-dart-${{ hashFiles('example/pubspec.lock') }}
restore-keys: ${{ runner.os }}-dart-
- name: Install Dependencies
run: |
dart pub get
echo $GITHUB_PATH:$HOME/.pub-cache/bin >> $GITHUB_PATH
dart pub global activate pana
- name: Verify Pub Score
run: ./tool/verify_pub_score.sh