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 f8579b5 commit 9ec5a93Copy full SHA for 9ec5a93
.github/workflows/ci.yml
@@ -85,8 +85,22 @@ jobs:
85
with:
86
command: build
87
args: --all-targets --all-features
88
- - name: Test
+ - name: Doctests
89
uses: actions-rs/cargo@v1
90
91
command: test
92
- args: --all-features
+ args: --doc --all-features
93
+ - name: Test with locally built nextest
94
+ uses: actions-rs/cargo@v1
95
+ with:
96
+ command: run
97
+ args: --package nextest -- nextest run --all-features
98
+ - name: Install nextest from crates.io
99
+ uses: baptiste0928/cargo-install@v1
100
101
+ crate: nextest
102
+ - name: Test with nextest from crates.io
103
104
105
+ command: nextest
106
+ args: run --all-features
0 commit comments