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 3c96c05 commit 05b75c5Copy full SHA for 05b75c5
.github/workflows/rust.yml
@@ -19,7 +19,13 @@ jobs:
19
- uses: actions/checkout@v4
20
- name: Build
21
run: cargo build
22
- - name: Run tests
23
- run: cargo nextest run
+ - name: Run tests graph-api-lib
+ run: cargo nextest run -p graph-api-lib
24
+ - name: Run tests graph-api-derive
25
+ run: cargo nextest run -p graph-api-derive
26
+ - name: Run tests graph-api-simplegraph
27
+ run: cargo nextest run -p graph-api-simplegraph
28
+ - name: Run tests graph-api-petgraph
29
+ run: cargo nextest run -p graph-api-petgraph
30
- name: Clippy
31
run: cargo clippy -- -D warnings
0 commit comments