mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
5ad4e5b614
* fix: add correct relations to asset typeorm entity * fix: add missing createdAt column to asset entity * ci: run check to make sure generated API is up-to-date * ci: cancel workflows that aren't for the latest commit in a branch * chore: add fvm config for flutter
36 lines
711 B
YAML
36 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.7.3'
|
|
|
|
- name: Install dependencies
|
|
run: dart pub get
|
|
working-directory: ./mobile
|
|
|
|
- name: Run dart analyze
|
|
run: dart analyze --fatal-infos
|
|
working-directory: ./mobile
|
|
|