Skip to content

leancodepl/dart-problem-matcher

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dart-problem-matcher

GitHub release (latest SemVer)

A GitHub Action that annotates your Dart (or Flutter) analyzer warnings and errors and helps you spot them right in the code.

Two warning annotations for "Sort directive sections alphabetically" shown right in the Pull Request's Files changed tab.

Usage

Simply add the step somewhere above your dart/flutter analyze in your steps list in GitHub Workflow:

jobs:
  test:
    steps:
      - uses: leancodepl/dart-problem-matcher@main

      - run: dart analyze # or flutter analyze
      # other steps...

Known limitations

  • GitHub Problem Matchers allow only up to 10 warning and 10 error annotations per step.
  • Only analyzer's warning and error severity problems will be annotated, info will be not.