Flutter vp updates #23
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: Flutter | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/flutter/pubspec.yaml' | |
- '.github/workflows/flutter.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/flutter/pubspec.yaml' | |
- '.github/workflows/flutter.yml' | |
defaults: | |
run: | |
working-directory: demo/flutter | |
jobs: | |
check-flutter-codestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Flutter 2.8.1 | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 2.8.1 | |
- name: Run Binding Analyzer | |
run: flutter analyze --no-fatal-infos --no-fatal-warnings | |
working-directory: sdk/flutter | |
- name: Run Demo Analyzer | |
run: flutter analyze --no-fatal-infos --no-fatal-warnings | |
working-directory: demo/flutter |