From 3cf510615ccf13c29223df7f6dd53983da883beb Mon Sep 17 00:00:00 2001 From: Valentin REVERSAT Date: Sun, 21 May 2023 17:13:55 +0200 Subject: [PATCH] chore(code-metrics): remove deprecation message --- .github/workflows/flutter.analyze-test.action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flutter.analyze-test.action.yaml b/.github/workflows/flutter.analyze-test.action.yaml index 1832900e..92640501 100644 --- a/.github/workflows/flutter.analyze-test.action.yaml +++ b/.github/workflows/flutter.analyze-test.action.yaml @@ -51,11 +51,11 @@ jobs: - name: 'Get dependencies' run: flutter pub get - name: '[Global] Code metrics' - run: flutter pub run dart_code_metrics:metrics analyze --fatal-style --fatal-warnings --fatal-performance --reporter=github lib + run: dart run dart_code_metrics:metrics analyze --fatal-style --fatal-warnings --fatal-performance --reporter=github lib - name: '[Unused files] Code metrics' - run: flutter pub run dart_code_metrics:metrics check-unused-files lib + run: dart run dart_code_metrics:metrics check-unused-files lib - name: '[Unused code] Code metrics' - run: flutter pub run dart_code_metrics:metrics check-unused-code lib + run: dart run dart_code_metrics:metrics check-unused-code lib test: name: 'Test' runs-on: ubuntu-latest