Bump audio_service from 0.18.13 to 0.18.15 #147
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
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: flutter build | |
runs-on: ubuntu-latest | |
env: | |
JAVA_VERSION: "12.0" | |
FLUTTER_VERSION: "3.19.6" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '12.x' | |
cache: 'gradle' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 29babcb | |
channel: master | |
cache: true | |
- run: flutter pub get | |
- run: flutter analyze --no-fatal-infos --no-fatal-warnings | |
- run: flutter test |