Skip to content

Commit cc4dc6d

Browse files
committed
misc: update CI
1 parent 8b9d58f commit cc4dc6d

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,21 @@ jobs:
2828
- uses: actions-rs/toolchain@v1
2929
with:
3030
toolchain: stable
31-
- name: Build with all features
32-
run: cargo build --all-features
33-
- name: Test with all features
34-
run: cargo test --all-features
31+
- name: Check with tokio-comp
32+
run: cargo check --features tokio-comp
33+
- name: Check with async-std-comp
34+
run: cargo check --features async-std-comp
35+
- name: Check with async-std-comp and compression
36+
run: cargo check --features async-std-comp,compression
37+
- name: Check with tokio-comp and compression
38+
run: cargo check --features tokio-comp,compression
39+
- name: Test with tokio-comp
40+
run: cargo test --features tokio-comp
41+
- name: Test with async-std-comp
42+
run: cargo test --features async-std-comp
43+
- name: Test with async-std-comp and compression
44+
run: cargo test --features async-std-comp,compression
45+
- name: Test with tokio-comp and compression
46+
run: cargo test --features tokio-comp,compression
3547
- name: Clean
3648
run: cargo clean

0 commit comments

Comments
 (0)