mirror of
https://github.com/immich-app/immich.git
synced 2024-12-22 01:47:08 +02:00
27488ceb67
* dep(mobile): update flutter and deps * chore: dart analyzer * chore: update flutter workflow version * chore: dart format * fix: gallery_viewer PopScope --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
40 lines
892 B
YAML
40 lines
892 B
YAML
name: Static Code Analysis
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
mobile-dart-analyze:
|
|
name: Run Dart Code Analysis
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Flutter SDK
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: "stable"
|
|
flutter-version: "3.16.9"
|
|
|
|
- name: Install dependencies
|
|
run: dart pub get
|
|
working-directory: ./mobile
|
|
|
|
- name: Run dart analyze
|
|
run: dart analyze --fatal-infos
|
|
working-directory: ./mobile
|
|
|
|
# Enable after riverpod generator migration is completed
|
|
# - name: Run dart custom lint
|
|
# run: dart run custom_lint
|
|
# working-directory: ./mobile
|