Skip to content

Commit 20d2702

Browse files
committed
misc: update ci workflow
1 parent 8e46785 commit 20d2702

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ jobs:
2828
- uses: actions-rs/toolchain@v1
2929
with:
3030
toolchain: stable
31-
- uses: actions-rs/cargo@v1
32-
with:
33-
command: test
34-
args: --verbose
35-
- uses: actions-rs/cargo@v1
36-
with:
37-
command: build
38-
args: --release --all-features --verbose
31+
- name: Build with all features
32+
run: cargo build --all-features
33+
- name: Test with all features
34+
run: cargo test --all-features
35+
- name: Clean
36+
run: cargo clean

0 commit comments

Comments
 (0)