Skip to content

check existing server when adding custom + rename facades to adapters #645

check existing server when adding custom + rename facades to adapters

check existing server when adding custom + rename facades to adapters #645

Workflow file for this run

name: Analyze
on:
pull_request:
branches:
- main
- develop
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
matrix:
analyze_mode:
- { name: "Warnings fatal, Infos allowed", mode: "--no-fatal-infos", allow_failure: false }
- { name: "Infos fatal, Warnings allowed", mode: "--no-fatal-warnings", allow_failure: false }
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Install FVM
run: |
curl -fsSL https://fvm.app/install.sh | bash
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
- run: make fvm-check
- run: make clean
- run: make deps
- run: make build-runner
- run: make l10n
- name: "${{ matrix.analyze_mode.name }}"
run: fvm flutter analyze ${{ matrix.analyze_mode.mode }}
continue-on-error: ${{ matrix.analyze_mode.allow_failure }}