From 58c1832578a103498b0120469b7a5d84833ad1b5 Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Sat, 5 Mar 2022 16:39:51 -0600 Subject: Add an `actix` feature to provide a nicer error message (#57) * Add an `actix` feature to provide a nicer error message for people migrating from <= 0.8 * Fix tests. * Bump version in readme. --- .github/workflows/ci.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to '.github') 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 -- cgit v1.2.3