Merge pull request #1764 from matthiasn/refactor/replace_stream_builder #2499
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 Analyze | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Flutter Analyze on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update apt-get | |
run: sudo apt-get update | |
- name: Install libraries | |
run: sudo apt-get install network-manager | |
- uses: actions/checkout@v3 | |
- uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
- name: Run Flutter Analyze | |
run: flutter analyze |