From bdc1e9067a50704fdc4ad9b4e7b77294fe4cbb2c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 17 Feb 2023 14:11:00 +0300 Subject: [PATCH] ci: Test with --all-features flags --- .github/workflows/quick-check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/quick-check.yml b/.github/workflows/quick-check.yml index 8004769..e3bcc1e 100644 --- a/.github/workflows/quick-check.yml +++ b/.github/workflows/quick-check.yml @@ -49,7 +49,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --all-features -- -D warnings quick_check-tests: runs-on: ubuntu-latest @@ -66,9 +66,9 @@ jobs: - name: Cargo test uses: actions-rs/cargo@v1 with: - command: test + command: test --all-features - name: Cargo check uses: actions-rs/cargo@v1 with: - command: check + command: check --all-features