From b5efc03a1dbc80e2ac8ac44e8634872b57b2f61c Mon Sep 17 00:00:00 2001 From: bluss Date: Mon, 22 Feb 2021 19:52:07 +0100 Subject: [PATCH] TEST: Build docs for the current crate only in ci --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6571fc..c0aeb6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Tests run: | cargo build --verbose --features "${{ matrix.features }}" - cargo doc --verbose --features "${{ matrix.features }}" + cargo doc --verbose --features "${{ matrix.features }}" --no-deps cargo test --verbose --features "${{ matrix.features }}" cargo test --release --verbose --features "${{ matrix.features }}" - name: Test run benchmarks