Skip to content

[flutter_tts] Fix integration_test issue (#929) #2498

[flutter_tts] Fix integration_test issue (#929)

[flutter_tts] Fix integration_test issue (#929) #2498

Workflow file for this run

# Copyright 2025 Samsung Electronics Co., Ltd. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
name: Analyze
on: [push, pull_request]
jobs:
dart_analyze:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Analyze source code
run: ./tools/tools_runner.sh analyze --custom-analysis=$(ls packages | tr '\n' ',')
format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install clang-format-11
- name: Check format
run: |
./tools/tools_runner.sh format --fail-on-change --no-kotlin --no-java --no-swift --clang-format-path=clang-format-11