diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aae40e14c..2fc6dc26b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -184,6 +184,9 @@ jobs: - run: cargo +nightly update -Z minimal-versions - run: make test.cargo crate=${{ matrix.crate }} + if: ${{ !contains(fromJSON('["juniper_actix"]'), matrix.crate) }} + - run: cargo check -p ${{ matrix.crate }} --all-features + if: ${{ contains(fromJSON('["juniper_actix"]'), matrix.crate) }} package: if: ${{ startsWith(github.ref, 'refs/tags/juniper') }} diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 17afe798d..30bda9ee1 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -47,7 +47,7 @@ derive_more = { version = "0.99.8", default-features = false } [dev-dependencies] actix-cors = "0.6" -actix-identity = "0.5" +actix-identity = "0.6" actix-rt = "2.0" actix-test = "0.1" async-stream = "0.3"