Update dependencies and codebase for Flutter Radio Player v4.0.0 #4
Workflow file for this run
This file contains hidden or 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, pull_request] | |
| jobs: | |
| analyze-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| package: | |
| - packages/flutter_radio_player | |
| - packages/flutter_radio_player_platform_interface | |
| - packages/flutter_radio_player_android | |
| - packages/flutter_radio_player_ios | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| - run: flutter pub get | |
| working-directory: ${{ matrix.package }} | |
| - run: flutter analyze --no-fatal-warnings | |
| working-directory: ${{ matrix.package }} | |
| - run: flutter test | |
| working-directory: ${{ matrix.package }} |