From c53c47b27cbc9f6967aa5104473ff40df536544b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Cig=C3=A1nek?= Date: Thu, 7 Sep 2023 12:44:19 +0200 Subject: [PATCH] Run code generators in CI --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a345c6f2f..dcc5a1280 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,18 +48,17 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' - flutter-version: '3.10.1' - name: Flutter doctor run: flutter doctor -v - - name: Getting Flutter packages (App) - run: flutter pub get + - name: Getting Flutter packages + run: dart pub get - - name: Get Flutter packages (Plugin) - run: | - cd ouisync-plugin - flutter pub get + - name: Run Flutter code generators + run: dart run build_runner build + env: + DSN: - name: Generate the Dart bindings for the OuiSync plugin (from the Rust FFI bindings for OuiSync library) run: |