From 0fe03fbec89e43585fcd9bb08b79ae35af080ebf Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Tue, 20 Oct 2020 00:37:02 +0200 Subject: [PATCH] ci: run `cargo test --all --no-default-features` --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9aa0990..cf31894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,9 @@ jobs: - name: Build run: cargo build --all --all-targets - name: Run tests - run: cargo test --all --all-targets + run: | + cargo test --all --all-targets + cargo test --all --no-default-features no-std: runs-on: ubuntu-latest