From 7200cb3247fcc711f108cc109efb99cefdb10438 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sun, 23 Jun 2024 09:56:14 +0200 Subject: [PATCH] additional test runs with all features --- .github/workflows/rust.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 54583e5..86f2771 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,9 +16,17 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Build crates + + - name: build default features run: cargo build --all --verbose - - name: Build + - name: build default features -- examples run: cargo build --examples --verbose - - name: Run tests + - name: test default features run: cargo test --all --verbose + + - name: build all features + run: cargo build --all-features --verbose + - name: build all features -- examples + run: cargo build --all-features --examples --verbose + - name: test all features + run: cargo test --all --all-features --verbose