refactor: re-add group in Xcode #1939
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 Analyze | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Flutter Analyze 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 | |
- 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 Analyze | |
run: make clean_analyze | |
- name: Check unused files | |
run: make check_unused_files | |
- name: Check unused l10n | |
run: make check_unused_l10n | |
- name: Check unused code | |
run: make check_unused_code |