fix play from youtube #137
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
check-format: | |
name: Check format using flutter format | |
runs-on: ubuntu-latest | |
container: cirrusci/flutter:stable | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check format | |
run: dart format --set-exit-if-changed . | |
lint: | |
name: Check lints | |
runs-on: ubuntu-latest | |
container: cirrusci/flutter:stable | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Lint using flutter analyze | |
run: flutter analyze | |