From 81ee0741aad668d4028521225f75e3a2de5f7c72 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Tue, 5 Oct 2021 14:36:13 +0200 Subject: [PATCH] Test no_std support --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 74b4c1610..e6cff540c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,6 +42,12 @@ jobs: with: command: test args: --all-features + - uses: actions-rs/cargo@v1 + # --no-default-features only available since 1.51.0 + if: matrix.rust != '1.45.0' + with: + command: test + args: --no-default-features WASM: runs-on: ubuntu-latest