fix: media info parsing #36
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 Web CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/[email protected] | |
- run: flutter pub get | |
- run: dart format --set-exit-if-changed . | |
- name: Analyze project source | |
run: flutter analyze | |
working-directory: ./lib | |
- name: Build example | |
run: flutter build web | |
working-directory: example | |