Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Commit 55f96d5

Browse files
committed
ci(tests): run tests separately from nextest
nextest-rs/nextest#16
1 parent e1e2fc5 commit 55f96d5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,11 @@ jobs:
4848
- uses: Swatinem/rust-cache@v2
4949
- name: Install nextest
5050
run: cargo install cargo-nextest
51-
- name: Run cargo test
52-
run: cargo nextest run
51+
- name: Run all tests
52+
run: |
53+
cargo nextest run
54+
cargo test --doc
55+
5356
5457
lints:
5558
name: Lints

0 commit comments

Comments
 (0)