Skip to content

Fix/do not send forbidden fields to patch #54

Fix/do not send forbidden fields to patch

Fix/do not send forbidden fields to patch #54

Workflow file for this run

name: Flutter Linting
on:
pull_request:
branches:
- "main"
- "!dependabot/**" # Ignore automatic PRs from dependabot
paths:
- "lib/**"
jobs:
lint:
name: Flutter Lints
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4 # Checkout the code in the main repo
- name: Flutter action
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze --fatal-warnings .