From 585ff2760e8e462e5d28578184be9a03ba173b52 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 29 Jan 2026 12:15:07 -0700 Subject: [PATCH] Add CI test for features --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a54784b..bf7a97d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,3 +44,15 @@ jobs: run: rustup show - name: test run: cargo test --all-features + + check-features: + name: Check features + runs-on: ubuntu-24.04 + steps: + - name: install system dependencies + run: sudo apt-get update && sudo apt-get install just + - uses: actions/checkout@v3 + - name: install toolchain + run: rustup show + - name: check features + run: just check-features \ No newline at end of file