From c38b650261b98fa6dc4234d9881a79d61d3982d3 Mon Sep 17 00:00:00 2001 From: KrosFire Date: Wed, 28 Aug 2024 19:19:41 +0200 Subject: [PATCH] Added --all-features flag in ci --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 70a416e..0015078 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,6 +15,6 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: cargo build --verbose + run: cargo build --verbose --all-features - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features