From ff5442cd9ea48fd3913700bb3ddb7f1a72c9b2c3 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 28 Jul 2023 16:00:07 -0700 Subject: [PATCH] Add no-std unstable build in CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6652aad7..d67039ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,7 @@ jobs: - run: cd serde && cargo build --no-default-features - run: cd serde && cargo build --no-default-features --features alloc - run: cd serde && cargo build --no-default-features --features rc,alloc + - run: cd serde && cargo build --no-default-features --features unstable - run: cd serde && cargo test --features derive,rc,unstable - run: cd test_suite/no_std && cargo build if: matrix.os != 'windows'