From 79be27159326c5adfb181ae2afb55201a48ff43a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Tue, 22 Apr 2025 14:01:00 +0200 Subject: [PATCH] Run doctests --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5214f454..f058ab07 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -206,8 +206,8 @@ jobs: with: toolchain: ${{ matrix.rust }} - uses: Swatinem/rust-cache@v2 - - run: cargo build --all-targets --features full - - run: cargo test --all-targets --features full + - run: cargo test --all-features + - run: cargo test --all-targets --all-features Package: needs: ["Rustfmt", "Docs", "Audit", "Book", "Typos", "Jinja2-Assumptions", "DevSkim", "CargoSort"] @@ -227,7 +227,7 @@ jobs: with: components: clippy - uses: Swatinem/rust-cache@v2 - - run: cd ${{ matrix.package }} && cargo build --all-targets + - run: cd ${{ matrix.package }} && cargo test - run: cd ${{ matrix.package }} && cargo test --all-targets - run: cd ${{ matrix.package }} && cargo clippy --all-targets -- -D warnings