From 26a3add956afab73a3b4ae4bf54da7b237b8dafb Mon Sep 17 00:00:00 2001 From: Dilawar Singh Date: Mon, 8 Jan 2024 12:14:55 +0530 Subject: [PATCH] ci: Adds `--all-features` to build and test step --- .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 86d538c..a8dc03d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,10 +18,10 @@ jobs: - uses: actions/checkout@v3 - name: Build run: | - cargo clippy --no-deps - cargo build --all-targets --verbose + cargo clippy --no-deps --all-features + cargo build --all-targets --all-features --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features - name: Check semver uses: obi1kenobi/cargo-semver-checks-action@v2