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 8e46785 commit 20d2702Copy full SHA for 20d2702
.github/workflows/ci.yml
@@ -28,11 +28,9 @@ jobs:
28
- uses: actions-rs/toolchain@v1
29
with:
30
toolchain: stable
31
- - uses: actions-rs/cargo@v1
32
- with:
33
- command: test
34
- args: --verbose
35
36
37
- command: build
38
- args: --release --all-features --verbose
+ - name: Build with all features
+ run: cargo build --all-features
+ - name: Test with all features
+ run: cargo test --all-features
+ - name: Clean
+ run: cargo clean
0 commit comments