Skip to content

fix: revert record library (didn't work on macOS) #1936

fix: revert record library (didn't work on macOS)

fix: revert record library (didn't work on macOS) #1936

Workflow file for this run

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