Skip to content

Commit 05b75c5

Browse files
committed
Split out builds because of test features: rust-lang/cargo#3620
1 parent 3c96c05 commit 05b75c5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/rust.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- name: Build
2121
run: cargo build
22-
- name: Run tests
23-
run: cargo nextest run
22+
- name: Run tests graph-api-lib
23+
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
2430
- name: Clippy
2531
run: cargo clippy -- -D warnings

0 commit comments

Comments
 (0)