Skip to content

fix: TTS $1 backreference bug and add voice selection #43

fix: TTS $1 backreference bug and add voice selection

fix: TTS $1 backreference bug and add voice selection #43

Workflow file for this run

name: CI
env:
FLUTTER_VERSION: 3.41.4
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
workflow_dispatch:
jobs:
analyze-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Install dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Test
run: flutter test $(find test -maxdepth 1 -name "*_test.dart" | sort | tr '\n' ' ')