mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02:00
6243bce46c
* Bump to Flutter 3.13.0 * Updates permission status * Adds hidden to app livecycle state * Updates and switches to WakelockPlus * bump flutter version github action * mobile test version * fix format * video player * video uri * ios test * Update android target sdk requirement to PlayStore --------- Co-authored-by: Alex Tran <Alex.Tran@conductix.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
35 lines
711 B
YAML
35 lines
711 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@v3
|
|
|
|
- name: Setup Flutter SDK
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: "stable"
|
|
flutter-version: "3.13.0"
|
|
|
|
- name: Install dependencies
|
|
run: dart pub get
|
|
working-directory: ./mobile
|
|
|
|
- name: Run dart analyze
|
|
run: dart analyze --fatal-infos
|
|
working-directory: ./mobile
|