diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27e87999..a3a58108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -173,6 +173,10 @@ jobs: - run: cargo +nightly update -Z minimal-versions - run: make test.cargo crate=${{ matrix.crate }} + if: ${{ matrix.crate != 'juniper_actix' }} + # TODO: Remove once MSRV bumps up >=1.75. + - run: cargo check -p ${{ matrix.crate }} --all-features + if: ${{ matrix.crate == 'juniper_actix' }} package: if: ${{ startsWith(github.ref, 'refs/tags/juniper') }} diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 2f9b53b2..be3fd2e2 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -36,7 +36,7 @@ serde = { version = "1.0.122", features = ["derive"] } serde_json = "1.0.18" [dev-dependencies] -actix-cors = "0.6" +actix-cors = "0.7" actix-identity = "0.6" actix-rt = "2.0" actix-test = "0.1"