feat(prescribed_result): add tts service to announce result if screen… #24
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 | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- delta | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Flutter SDK | |
uses: flutter-actions/setup-flutter@v2 | |
with: | |
channel: stable | |
version: 3.16.9 | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Analyze project source | |
run: dart analyze --no-fatal-warnings | |
- name: Run tests | |
run: flutter test --no-test-assets --disable-service-auth-codes --coverage | |
- name: Build APK | |
run: flutter build apk --debug --split-per-abi |