mirror of
https://github.com/immich-app/immich.git
synced 2025-12-06 09:13:13 +03:00
119 lines
3.7 KiB
YAML
119 lines
3.7 KiB
YAML
name: Static Code Analysis
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
pre-job:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
outputs:
|
|
should_run: ${{ steps.check.outputs.should_run }}
|
|
steps:
|
|
- id: token
|
|
uses: immich-app/devtools/actions/create-workflow-token@da177fa133657503ddb7503f8ba53dccefec5da1 # create-workflow-token-action-v1.0.0
|
|
with:
|
|
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
|
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
|
|
|
- name: Check what should run
|
|
id: check
|
|
uses: immich-app/devtools/actions/pre-job@08bac802a312fc89808e0dd589271ca0974087b5 # pre-job-action-v2.0.0
|
|
with:
|
|
github-token: ${{ steps.token.outputs.token }}
|
|
filters: |
|
|
mobile:
|
|
- 'mobile/**'
|
|
force-filters: |
|
|
- '.github/workflows/static_analysis.yml'
|
|
force-events: 'workflow_dispatch,release'
|
|
|
|
mobile-dart-analyze:
|
|
name: Run Dart Code Analysis
|
|
needs: pre-job
|
|
if: ${{ fromJSON(needs.pre-job.outputs.should_run).mobile == true }}
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
defaults:
|
|
run:
|
|
working-directory: ./mobile
|
|
steps:
|
|
- id: token
|
|
uses: immich-app/devtools/actions/create-workflow-token@da177fa133657503ddb7503f8ba53dccefec5da1 # create-workflow-token-action-v1.0.0
|
|
with:
|
|
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
|
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
with:
|
|
persist-credentials: false
|
|
token: ${{ steps.token.outputs.token }}
|
|
|
|
- name: Setup Flutter SDK
|
|
uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # v2.21.0
|
|
with:
|
|
channel: 'stable'
|
|
flutter-version-file: ./mobile/pubspec.yaml
|
|
|
|
- name: Install dependencies
|
|
run: dart pub get
|
|
|
|
- name: Install DCM
|
|
uses: CQLabs/setup-dcm@8697ae0790c0852e964a6ef1d768d62a6675481a # v2.0.1
|
|
with:
|
|
github-token: ${{ steps.token.outputs.token }}
|
|
version: auto
|
|
working-directory: ./mobile
|
|
|
|
- name: Generate translation file
|
|
run: dart run easy_localization:generate -S ../i18n && dart run bin/generate_keys.dart
|
|
|
|
- name: Run Build Runner
|
|
run: make build
|
|
|
|
- name: Generate platform API
|
|
run: make pigeon
|
|
|
|
- name: Find file changes
|
|
uses: tj-actions/verify-changed-files@a1c6acee9df209257a246f2cc6ae8cb6581c1edf # v20.0.4
|
|
id: verify-changed-files
|
|
with:
|
|
files: |
|
|
mobile/**/*.g.dart
|
|
mobile/**/*.gr.dart
|
|
mobile/**/*.drift.dart
|
|
|
|
- name: Verify files have not changed
|
|
if: steps.verify-changed-files.outputs.files_changed == 'true'
|
|
env:
|
|
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
|
|
run: |
|
|
echo "ERROR: Generated files not up to date! Run 'make build' and 'make pigeon' inside the mobile directory"
|
|
echo "Changed files: ${CHANGED_FILES}"
|
|
exit 1
|
|
|
|
- name: Run dart analyze
|
|
run: dart analyze --fatal-infos
|
|
|
|
- name: Run dart format
|
|
run: make format
|
|
|
|
# TODO: Re-enable after upgrading custom_lint
|
|
# - name: Run dart custom_lint
|
|
# run: dart run custom_lint
|
|
|
|
# TODO: Use https://github.com/CQLabs/dcm-action
|
|
- name: Run DCM
|
|
run: dcm analyze lib --fatal-style --fatal-warnings
|