all-features ci
Some checks failed
CI / Typos (push) Successful in 31s
CI / Clippy (push) Failing after 1m4s
CI / Build and test (all features) (push) Failing after 2m41s
CI / Build and test (push) Failing after 7m32s

This commit is contained in:
2026-03-10 18:15:18 -07:00
parent a576ac49cd
commit 86fde51809

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