From e26c470a4ded9a96757d023b406097e1ed26eefe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Olav?= Date: Fri, 27 Oct 2023 12:28:52 +0200 Subject: [PATCH] ci: change from dart to flutter pub get --- .github/workflows/dart.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 0ea63639..76c4c52f 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -12,6 +12,7 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: subosito/flutter-action@v2 # Note: This workflow uses the latest stable version of the Dart SDK. # You can specify other versions if desired, see documentation here: @@ -19,7 +20,7 @@ jobs: - uses: dart-lang/setup-dart@v1 - name: Install dependencies - run: dart pub get + run: flutter pub get # Uncomment this step to verify the use of 'dart format' on each commit. - name: Verify formatting