Add isMinValueAtCenter property to RadarChartData #1868
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: Code Verification | |
on: [ push, pull_request ] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- name: Get packages | |
run: flutter pub get | |
- name: Check formatting | |
run: make checkFormat | |
- name: Analyze the source code | |
run: make analyze | |
- name: Run tests | |
run: make test |