From 8f60a10b8d146d4fac6c7e55ca55829376c70949 Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Sat, 17 Dec 2022 18:20:57 -0800 Subject: [PATCH] Adding all-features CI test (#87) --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14cd739..4131f71 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -74,6 +74,12 @@ jobs: command: test args: --no-default-features ${{ matrix.frontend_feature }},std ${{ matrix.backend_feature }} + - name: Run cargo test with all features enabled + uses: actions-rs/cargo@v1 + with: + command: test + args: --all-features + build-no-std: name: Build with no-std on ${{ matrix.target }} runs-on: ubuntu-latest