From d4c2caa53736ada8cd78e256fb95019b79e74bf7 Mon Sep 17 00:00:00 2001 From: Omid Rad Date: Sat, 5 Mar 2022 23:11:59 +0100 Subject: Actix 4 (#56) * Remove all default actix features * Set MSRV * Have `actix4` feature, instead of `actix` * enable actix tests for all features --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f5aca..0a1c937 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,5 +53,13 @@ jobs: with: profile: minimal toolchain: stable - - name: Run test - run: cargo test --all-targets --features actix + - name: Run test actix4 + run: cargo test --all-targets --features actix4 + - name: Run test actix3 + run: cargo test --all-targets --features actix3 + - name: Run test actix2 + run: cargo test --all-targets --features actix2 + - name: Run test warp + run: cargo test --all-targets --features warp + - name: Run test no feature + run: cargo test --all-targets -- cgit v1.2.3