From b3db805e46df43fb0297dc129e685d7e2bbbef3e Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Fri, 13 Aug 2021 17:52:23 -0700 Subject: [PATCH] CI: add cargo doc run using stable features Signed-off-by: Joe Richey --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01cc460f5..43285e28d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,6 +70,13 @@ jobs: with: command: doc + - name: "Run cargo doc for stable" + uses: actions-rs/cargo@v1 + with: + command: doc + args: --no-default-features --features external_asm,instructions + if: runner.os != 'Windows' + - name: "Run cargo build for stable without instructions" uses: actions-rs/cargo@v1 with: