all-features ci

This commit is contained in:
2026-03-10 18:15:18 -07:00
parent 80d248787c
commit 280bbcb83e

View File

@@ -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