[Issue Fix] Deprecated usage of the color in SvgPicture
#29
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Flutter Analyze | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v1.5.3 | |
with: | |
channel: 'stable' | |
- name: Geting flutter dependencies | |
run: flutter pub get | |
- name: Generating code | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Analyzing Dart/Flutter code | |
run: flutter analyze |