Skip to content

Commit

Permalink
Run code generators in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
madadam committed Sep 7, 2023
1 parent 6ca00aa commit 70991b1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,19 @@ 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: Get Flutter packages (Plugin)
- name: Getting Flutter packages
run: |
cd ouisync-plugin
flutter pub get
flutter pub get
cd ouisync-plugin && flutter pub get
- name: Run 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: |
Expand Down

0 comments on commit 70991b1

Please sign in to comment.