From 280bbcb83e52bc755e58465350761352607e0b13 Mon Sep 17 00:00:00 2001 From: rm-dr <96270320+rm-dr@users.noreply.github.com> Date: Tue, 10 Mar 2026 18:15:18 -0700 Subject: [PATCH] `all-features` ci --- .gitea/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 81ef460..1dc7a2e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -52,3 +52,25 @@ jobs: - name: Test run: cargo test --release + + buildandtest-allfeatures: + name: "Build and test (all features)" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: "Install Rust" + run: | + sudo apt update + DEBIAN_FRONTEND=noninteractive \ + sudo apt install --yes rustup + rustup default 1.94.0 + + - name: Install cargo-all-features + run: cargo install cargo-all-features + + - name: Build (all features) + run: cargo build-all-features + + - name: Test (all features) + run: cargo test-all-features