We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f14318 commit ab451b6Copy full SHA for ab451b6
.github/workflows/dart.yml
@@ -3,13 +3,23 @@ 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
+ - working-directory: bin/objectbox_model_generator
13
+ - name: Install dependencies
14
+ run: pub get
15
+ - name: Run tests
16
+ run: pub run test
17
18
+ lib:
19
+ needs: generator
20
runs-on: ubuntu-latest
-
21
container:
22
image: google/dart:latest
23
steps:
24
- uses: actions/checkout@v1
25
- 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