We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f14318 commit c46a64aCopy full SHA for c46a64a
.github/workflows/dart.yml
@@ -3,13 +3,24 @@ name: Dart CI
3
on: [push, pull_request]
4
5
jobs:
6
- build:
+ generator:
7
+ runs-on: ubuntu-latest
8
+ container:
9
+ image: google/dart:latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Change dir to the generator binary
13
+ run: cd bin/objectbox_model_generator
14
+ - name: Install dependencies
15
+ run: pub get
16
+ - name: Run tests
17
+ run: pub run test
18
19
+ lib:
20
+ needs: generator
21
runs-on: ubuntu-latest
-
22
container:
23
image: google/dart:latest
24
steps:
25
- uses: actions/checkout@v1
26
- name: Install ObjectBox C-API
bin/objectbox_model_generator/test/index.dart renamed to bin/objectbox_model_generator/test/generator_test.dart
0 commit comments