summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml20
1 files changed, 15 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0a1c937..2f399ca 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -54,12 +54,22 @@ jobs:
profile: minimal
toolchain: stable
- name: Run test actix4
- run: cargo test --all-targets --features actix4
+ run: |
+ cargo test --all-targets --features actix4
+ cargo test --doc --features actix4
- name: Run test actix3
- run: cargo test --all-targets --features actix3
+ run: |
+ cargo test --all-targets --features actix3
+ cargo test --doc --features actix3
- name: Run test actix2
- run: cargo test --all-targets --features actix2
+ run: |
+ cargo test --all-targets --features actix2
+ cargo test --doc --features actix2
- name: Run test warp
- run: cargo test --all-targets --features warp
+ run: |
+ cargo test --all-targets --features warp
+ cargo test --doc --features warp
- name: Run test no feature
- run: cargo test --all-targets
+ run: |
+ cargo test --all-targets
+ cargo test --doc