From 2e1c0db12af22dd0d50a885cc93895ddc5230298 Mon Sep 17 00:00:00 2001 From: Eivind Alexander Bergem Date: Fri, 30 Aug 2024 15:12:39 +0200 Subject: [PATCH] Build with all features --- .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 2c514df..5b0a268 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,9 +19,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build - run: cargo build + run: cargo build --all-features - name: Run Tests - run: cargo test + run: cargo test --all-features clippy: runs-on: ubuntu-latest