Add media_player_proxy to check if the content is live or not #246
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: Analyze | |
on: [push, pull_request] | |
jobs: | |
dart_analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Analyze source code | |
run: ./tools/tools_runner.sh analyze --custom-analysis=$(ls packages | tr '\n' ',') | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Install clang-format | |
run: | | |
sudo apt-get update | |
sudo apt-get install clang-format-11 | |
- name: Check format | |
run: ./tools/tools_runner.sh format --fail-on-change --clang-format=clang-format-11 |