Skip to content

Lock file maintenance #161

Lock file maintenance

Lock file maintenance #161

name: native_image_cropper_macos
on:
push:
paths:
- 'native_image_cropper_macos/**'
- '.github/workflows/native_image_cropper_macos.yaml'
jobs:
build:
defaults:
run:
working-directory: native_image_cropper_macos
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: native_image_cropper_macos/.dart_tool/
key: ${{ runner.os }}-macos-${{ 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
- name: Run tests
run: flutter test
pana:
defaults:
run:
working-directory: native_image_cropper_macos
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: |
native_image_cropper_macos/.dart_tool/
~/.pub-cache/
key: ${{ runner.os }}-macos-${{ 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