chore: upgrade to WhisperKit v0.7.1 #5509
Workflow file for this run
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 Test | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Flutter Test on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update apt-get | |
run: sudo apt-get update | |
- name: Install libraries | |
run: sudo apt-get install network-manager mpv libmpv-dev | |
- uses: actions/checkout@v3 | |
- uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
- name: Run Flutter tests | |
run: make l10n test | |
- uses: codecov/codecov-action@v3 |