Mark successful payjoin sessions in storage. #65
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: | |
pull_request: | |
branches: | |
- main | |
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@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- 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 }} |