Send Payjoin #36
Workflow file for this run
This file contains 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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
analyze_mode: | |
- { name: "Infos allowed, Warnings fatal", mode: "--no-fatal-infos", allow_failure: false } | |
- { name: "Warnings allowed, Infos fatal: allow failure", mode: "--no-fatal-warnings", allow_failure: true } | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: 3.24.5 | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Generate freezed files | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: "${{ matrix.analyze_mode.name }}" | |
run: flutter analyze ${{ matrix.analyze_mode.mode }} | |
continue-on-error: ${{ matrix.analyze_mode.allow_failure }} |