diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d696c68..59b0f60 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -33,6 +33,8 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - run: cargo test + - run: cargo test --all-features + - run: cargo test --no-default-features fmt: name: Rustfmt @@ -53,6 +55,8 @@ jobs: with: components: clippy - run: cargo clippy -- -D warnings + - run: cargo clippy --all-features -- -D warnings + - run: cargo clippy --no-default-features -- -D warnings doc: name: Build documentation