Bump syncfusion_flutter_charts from 27.2.5 to 28.1.33 #521
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: Syntax Check | |
on: | |
push: | |
# Ignore develop branch, will be triggered by workflow_call in release.yml | |
branches-ignore: | |
- develop | |
workflow_call: | |
pull_request: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
name: codecheck | |
steps: | |
- uses: actions/checkout@v4 | |
# Call setup_env action to setup workspace | |
- uses: ./.github/actions/setup_env | |
with: | |
java-version: 17.x | |
flutter-channel: stable | |
# Check for any formatting issues in the code. | |
- run: dart format --set-exit-if-changed . | |
# Statically analyze the Dart code for any errors. | |
- run: dart analyze . | |
# Run widget tests for our flutter project. | |
# - run: flutter test |