Skip to content

Commit

Permalink
Fix pana job
Browse files Browse the repository at this point in the history
  • Loading branch information
quoc-huynh-cosee committed Nov 21, 2023
1 parent 329595e commit 8c15dfc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,21 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
- uses: asdf-vm/actions/install@v3

- name: Set path to pub-cache binaries
run: echo $GITHUB_PATH:$HOME/.pub-cache/bin >> $GITHUB_PATH
- name: Cache flutter dependencies
uses: actions/cache@v3
id: flutter_cache
with:
path: .dart_tool/
path: |
.dart_tool/
~/.pub-cache/
key: ${{ runner.os }}-${{ hashFiles('**/pubspec.lock') }}
- name: Install Dependencies
run: |
flutter pub get
flutter pub global activate pana
- name: DEBUG
run: ls
- name: Verify Pub Score
run: ./tool/verify_pub_score.sh

0 comments on commit 8c15dfc

Please sign in to comment.