[flutter_tts] Fix integration_test issue (#929) #2498
This file contains hidden or 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
| # 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 |