From e32c299cb6df62481ced8784334ff69c31470c78 Mon Sep 17 00:00:00 2001 From: Dion Dokter Date: Sat, 9 May 2020 20:54:52 +0200 Subject: [PATCH] Added build step for no_std in the workflow --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6fa6e9..70c343f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,6 +12,7 @@ jobs: - uses: actions/checkout@master - name: Install Rust (rustup) run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} + - run: cargo build --no-default-features - run: cargo test - run: cargo test --features preserve_order - run: cargo test --manifest-path test-suite/Cargo.toml