From 20954f2240272112b4a6234c624216b58116323d Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Mon, 3 Jan 2022 22:10:51 +1100 Subject: [PATCH] Do cargo build instead of cargo check so we test linking --- .github/workflows/build_and_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 2e44995..7674ff1 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -14,11 +14,11 @@ jobs: profile: minimal - uses: actions-rs/cargo@v1 with: - command: check + command: build args: --workspace --examples - uses: actions-rs/cargo@v1 with: - command: check + command: build args: --workspace --examples --features eh1_0_alpha - uses: actions-rs/cargo@v1 with: