From d172ccb154b1c45111808788f6638b7f2b2751df Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 11 Jun 2024 12:42:36 +0200 Subject: [PATCH] Check all features in CI --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f34cc9..b850ddc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - name: Build library + name: Check library runs-on: ubuntu-latest steps: - uses: actions/checkout@master @@ -13,8 +13,11 @@ jobs: profile: minimal toolchain: stable override: true - - name: Build library - run: cargo build + - name: Check library + run: | + cargo check + cargo check --features large-blobs + cargo check --all-features test: name: Run tests