check existing server when adding custom + rename facades to adapters #645
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |