From cd8076aee623c87d0dc3d5d65c94407cb0942f12 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Mon, 30 Dec 2024 21:02:48 +0400 Subject: [PATCH] chore(ci): run integration tests for no-std --- .github/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eda5329..55b347b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,7 @@ jobs: - run: cargo clippy --version - run: cargo clippy --features i64 - run: cargo clippy --all-targets --features i64 + - run: cargo clippy --all-targets --features i64,i128 - run: cargo clippy --all-targets --all-features test: @@ -44,12 +45,12 @@ jobs: - run: rustc --version - run: cargo test --features i64 - run: cargo test --features i128 - - run: cargo test --no-default-features --lib --features i64 - - run: cargo test --no-default-features --lib --features i128 - - run: cargo test --no-default-features --lib --features std,i64 - - run: cargo test --no-default-features --lib --features serde,i64 - - run: cargo test --no-default-features --lib --features i64,parity - - run: cargo test --no-default-features --lib --features i128,parity + - run: cargo test --no-default-features --lib --test it --features i64 + - run: cargo test --no-default-features --lib --test it --features i128 + - run: cargo test --no-default-features --lib --test it --features std,i64 + - run: cargo test --no-default-features --lib --test it --features serde,i64 + - run: cargo test --no-default-features --lib --test it --features i64,parity + - run: cargo test --no-default-features --lib --test it --features i128,parity - run: cargo test --all-features run-example: