Adjust CI build features

This commit is contained in:
Luke Street 2025-02-09 11:14:03 -07:00
parent 3c66ac3d54
commit bbd8d9714f

View File

@ -33,9 +33,9 @@ jobs:
- name: Cache Rust workspace - name: Cache Rust workspace
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
- name: Cargo check - name: Cargo check
run: cargo check --all-features --all-targets run: cargo check --features all
- name: Cargo clippy - name: Cargo clippy
run: cargo clippy --all-features --all-targets run: cargo clippy --features all
fmt: fmt:
name: Format name: Format
@ -90,7 +90,7 @@ jobs:
- name: Cache Rust workspace - name: Cache Rust workspace
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
- name: Cargo test - name: Cargo test
run: cargo test --release --all-features run: cargo test --release --features all
build-cli: build-cli:
name: Build objdiff-cli name: Build objdiff-cli