diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e00891ad..f434ee610 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,7 +116,9 @@ jobs: uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b with: command: build + args: --all-features - name: Run `cargo test` uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b with: command: test + args: --all-features diff --git a/justfile b/justfile index 62d1e7f26..7c2c4287f 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ build: - cargo clippy - cargo test + cargo clippy --all-features + cargo test --all-features cargo fmt --check